16 lines
306 B
Python
16 lines
306 B
Python
|
|
from mcp.server.fastmcp import FastMCP
|
||
|
|
|
||
|
|
mcp = FastMCP("Math")
|
||
|
|
|
||
|
|
@mcp.tool()
|
||
|
|
def add(a: int, b: int) -> int:
|
||
|
|
"""Add two numbers"""
|
||
|
|
return a + b
|
||
|
|
|
||
|
|
@mcp.tool()
|
||
|
|
def multiply(a: int, b: int) -> int:
|
||
|
|
"""Multiply two numbers"""
|
||
|
|
return a * b
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
mcp.run(transport="stdio")
|