mirror of
https://github.com/aljazceru/mcp-python-sdk.git
synced 2026-01-22 15:24:34 +01:00
Integrate FastMCP
This commit integrates FastMCP, a high-level MCP server implementation originally written by Jeremiah Lowin, into the official MCP SDK. It also updates dependencies and adds new dev dependencies. It moves the existing SDK into a .lowlevel .
This commit is contained in:
8
src/mcp/server/fastmcp/__init__.py
Normal file
8
src/mcp/server/fastmcp/__init__.py
Normal file
@@ -0,0 +1,8 @@
|
||||
"""FastMCP - A more ergonomic interface for MCP servers."""
|
||||
|
||||
from importlib.metadata import version
|
||||
from .server import FastMCP, Context
|
||||
from .utilities.types import Image
|
||||
|
||||
__version__ = version("mcp")
|
||||
__all__ = ["FastMCP", "Context", "Image"]
|
||||
Reference in New Issue
Block a user