feat: Initial commit

This commit is contained in:
2026-03-16 14:12:06 +01:00
parent 33b1e3747c
commit 156727e689
11 changed files with 522 additions and 0 deletions

21
tests/fixtures/echo_server.py vendored Normal file
View File

@@ -0,0 +1,21 @@
"""Simple MCP server used for testing: string tools."""
from mcp.server.fastmcp import FastMCP
mcp = FastMCP("echo")
@mcp.tool()
def echo(message: str) -> str:
"""Return the message unchanged."""
return message
@mcp.tool()
def reverse(text: str) -> str:
"""Return the text reversed."""
return text[::-1]
if __name__ == "__main__":
mcp.run("stdio")