Files
modelcontextprotocol--pytho…/docs_src/structured_output/tutorial009.py
T

16 lines
322 B
Python

from mcp.server import MCPServer
mcp = MCPServer("Weather")
class Station:
def __init__(self, name: str, online: bool):
self.name = name
self.online = online
@mcp.tool()
def get_station(name: str) -> Station:
"""Look up a weather station by name."""
return Station(name=name, online=True)