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: