Home/Servers/OpenAPI MCP Server

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"
        ]
      }
    }
  }
}
โ† Back to all servers