Pythonic MCP servers + clients

MCP, withoutthe ceremony.

The fast, Pythonic way to build MCP servers and clients.

Illustrative server surfaceReady
01from fastmcp import FastMCP
02
03mcp = FastMCP("Signal")
04
05# Illustrative tool definition
06@mcp.tool
07def inspect_signal(query: str):
08  return evidence(query)
09
10mcp.run()
SERVER READY
Tools exposed through a small, legible Python surface.
Server ↔ clientIllustrative interface