22 lines
379 B
Python
22 lines
379 B
Python
"""Simple MCP server used for testing: numeric tools."""
|
|
|
|
from mcp.server.fastmcp import FastMCP
|
|
|
|
mcp = FastMCP("math")
|
|
|
|
|
|
@mcp.tool()
|
|
def add(a: int, b: int) -> int:
|
|
"""Return the sum of a and b."""
|
|
return a + b
|
|
|
|
|
|
@mcp.tool()
|
|
def multiply(a: int, b: int) -> int:
|
|
"""Return the product of a and b."""
|
|
return a * b
|
|
|
|
|
|
if __name__ == "__main__":
|
|
mcp.run("stdio")
|