Skip to main content
ConciergeConcierge

The Production MCP Framework

Build reliable MCP servers with progressive tool disclosure, staged workflows, and code-based execution.

One-line migration from FastMCP

# Before
from mcp.server.fastmcp import FastMCP
app = FastMCP("my-server")

# After:all existing @app.tool() decorators keep working
from concierge import Concierge
app = Concierge("my-server")