From 41279df4e50fde4c0fe86886b2230482ef4043d7 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Sat, 30 Nov 2024 20:37:40 -0500 Subject: [PATCH] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a57015a6..1ae6cf836 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,19 @@ FastMCP makes building MCP servers simple and intuitive. Create tools, expose re ```python from fastmcp import FastMCP + mcp = FastMCP("Demo 🚀") + @mcp.tool() def add(a: int, b: int) -> int: """Add two numbers""" return a + b ``` -That's it! FastMCP handles all the complex protocol details and server management, so you can focus on building great tools. It's designed to be high-level and Pythonic - in most cases, decorating a function is all you need. +That's it! + +FastMCP handles all the complex protocol details and server management, so you can focus on building great tools. It's designed to be high-level and Pythonic - in most cases, decorating a function is all you need. ### Key features: