Skip to main content
Glama

XFOIL MCP Server

tool.py489 B
"""Helper for wiring XFOIL into python-sdk MCP servers.""" from __future__ import annotations from mcp.server.fastmcp import FastMCP from .core import compute_polar from .models import PolarRequest, PolarResponse def build_tool(app: FastMCP) -> None: """Register the polar analysis tool on the provided MCP app.""" @app.tool() def polar(request: PolarRequest) -> PolarResponse: # type: ignore[valid-type] return compute_polar(request) __all__ = ["build_tool"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yevheniikravchuk/xfoil-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server