OpenAPI MCP Server
by Snaggle AI ยท โญ 534 stars ยท updated 4 months ago
Interact with any REST API defined by an OpenAPI/Swagger specification. Point at any API spec URL and immediately get tools to call all endpoints through your AI assistant.
74
Good
Quality Score Breakdown
maintenance75/100
community72/100
documentation75/100
compatibility74/100
Use Cases
- โcall REST APIs
- โOpenAPI integration
- โAPI exploration
- โautomated API testing
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"openapi": {
"command": "npx",
"args": [
"-y",
"openapi-mcp-server",
"--spec",
"https://api.example.com/openapi.json"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"openapi": {
"command": "npx",
"args": [
"-y",
"openapi-mcp-server",
"--spec",
"https://api.example.com/openapi.json"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"openapi": {
"command": "npx",
"args": [
"-y",
"openapi-mcp-server",
"--spec",
"https://api.example.com/openapi.json"
]
}
}
}
}