Skip to main content
Glama
gujord

OpenAPI to Model Context Protocol (MCP)

__init__.py1.4 kB
# SPDX-License-Identifier: MIT # Copyright (c) 2025 Roger Gujord # https://github.com/gujord/OpenAPI-MCP """OpenAPI MCP Server - A modular Model Context Protocol server for OpenAPI specifications.""" __version__ = "1.0.4" __author__ = "Roger Gujord" __license__ = "MIT" from openapi_mcp.config import ServerConfig from openapi_mcp.auth import AuthenticationManager from openapi_mcp.fastmcp_server import FastMCPOpenAPIServer, main from openapi_mcp.exceptions import ( MCPServerError, ConfigurationError, AuthenticationError, RequestExecutionError, ToolNotFoundError, ) from openapi_mcp.types import ( OperationMetadata, ParameterDefinition, OAuthConfig, UsernameAuthConfig, SSEConfig, MCPHTTPConfig, HTTPRetryConfig, ToolMetadata, RequestInfo, JSONRPCError, JSONRPCResponse, ) __all__ = [ "__version__", "__author__", "__license__", "ServerConfig", "AuthenticationManager", "FastMCPOpenAPIServer", "main", "MCPServerError", "ConfigurationError", "AuthenticationError", "RequestExecutionError", "ToolNotFoundError", # Type definitions "OperationMetadata", "ParameterDefinition", "OAuthConfig", "UsernameAuthConfig", "SSEConfig", "MCPHTTPConfig", "HTTPRetryConfig", "ToolMetadata", "RequestInfo", "JSONRPCError", "JSONRPCResponse", ]

Latest Blog Posts

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/gujord/OpenAPI-MCP'

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