We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Agarwal-Saurabh/multiapimcpserver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•462 B
"""
FastMCP OpenAPI - Dynamic OpenAPI to MCP tool converter.
This package provides a FastMCP server that can dynamically generate MCP tools
from OpenAPI specifications, allowing AI assistants to interact with REST APIs.
"""
from .server import OpenAPIServer
from .config import AuthConfig, ServerConfig
from .models import OpenAPISpec, APIOperation
__version__ = "0.1.0"
__all__ = ["OpenAPIServer", "AuthConfig", "ServerConfig", "OpenAPISpec", "APIOperation"]