"""Minimal MCP server used only by integration tests."""
from mcp.server.fastmcp import FastMCP
mcp = FastMCP("test-server")
@mcp.tool()
def hello(name: str) -> str:
"""Say hello to someone."""
return f"Hello, {name}!"
@mcp.tool()
def add(a: int, b: int) -> int:
"""Add two numbers."""
return a + b
if __name__ == "__main__":
mcp.run(transport="stdio")