Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
OpenAPI
code

OpenAPI MCP Server

AWS Labs MCP server for OpenAPI specs

openapiswaggerapirestaws

About

## OpenAPI MCP Server: API Specification and Documentation The **OpenAPI MCP Server** integrates OpenAPI specification management into Google Antigravity, enabling AI-assisted API design, documentation generation, and client SDK creation from OpenAPI/Swagger definitions. ### Why OpenAPI MCP? - **Spec-First Design**: Design APIs using OpenAPI specifications before implementation - **Documentation Generation**: Auto-generate interactive API documentation from specs - **Client Generation**: Generate type-safe client SDKs in multiple programming languages - **Validation**: Validate API implementations against specifications for compliance - **Mock Servers**: Create mock servers from specs for frontend development ### Key Features #### 1. Spec Management ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Parse the OpenAPI spec and list all endpoints with their request/response schemas" }] ) ``` #### 2. Documentation ```python # Generate docs response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Generate interactive API documentation from the OpenAPI specification" }] ) ``` #### 3. Client Generation ```python # Create SDK response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Generate TypeScript client SDK from the OpenAPI spec with full type definitions" }] ) ``` #### 4. Spec Validation ```python # Validate spec response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Validate OpenAPI spec for errors and suggest improvements for best practices" }] ) ``` ### Configuration ```json { "mcpServers": { "openapi": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-openapi"], "env": { "OPENAPI_SPEC_PATH": "./openapi.yaml", "OPENAPI_OUTPUT_DIR": "./generated" } } } } ``` ### Use Cases **API Design**: Design APIs collaboratively using OpenAPI specifications as the source of truth. **Documentation**: Maintain up-to-date API documentation automatically from specs. **SDK Generation**: Provide type-safe client libraries to API consumers. **Contract Testing**: Validate API implementations match documented specifications. The OpenAPI MCP Server brings specification-driven API development to your workflow, ensuring consistency between design, documentation, and implementation.

Installation

Configuration
{
  "mcpServers": {
    "openapi": {
      "mcpServers": {
        "openapi": {
          "args": [
            "-y",
            "@awslabs/openapi-mcp-server",
            "--spec",
            "/path/to/openapi.json"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Point to your OpenAPI/Swagger spec file
  2. 22. Supports Basic Auth, Bearer Token, API Key, Cognito
  3. 33. Auto-generates tools from API endpoints

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers