swagger-json-mcp
A powerful MCP server for querying and processing large Swagger/OpenAPI JSON documents, enabling LLMs to efficiently access API documentation without loading entire files.
README
Swagger JSON MCP Server
A powerful Model Context Protocol (MCP) server designed to efficiently query and process large Swagger/OpenAPI JSON documents. This server solves the common problem of LLMs being unable to process large API documentation files (typically 4000+ lines) by providing structured, intelligent query interfaces.
๐ Features
Core Capabilities
- ๐ Multi-project Management: Seamlessly handle multiple Swagger/OpenAPI projects
- ๐ Smart $ref Resolution: Automatically resolve JSON Schema references and handle circular dependencies
- ๐ Intelligent Search: Advanced search capabilities for APIs and schemas with fuzzy matching
- โก Efficient Querying: Get specific API or schema information without loading entire documents
- ๐ Real-time Updates: Automatically detect and reload changes in Swagger files
MCP Tools
list_swaggers: List all available Swagger projectsget_swagger_overview: Get project overview and statisticsget_api_info: Retrieve complete API information with resolved schemasget_schema: Get fully resolved schema definitionssearch_apis: Search API endpoints with advanced filteringsearch_schemas: Search schema definitions with type filtering
๐ Project Structure
swagger-json-mcp/
โโโ src/
โ โโโ core/ # Core functionality modules
โ โ โโโ SwaggerParser.ts # Swagger JSON parser
โ โ โโโ SchemaResolver.ts # $ref reference resolver
โ โ โโโ SwaggerManager.ts # Multi-project manager
โ โโโ mcp/ # MCP server implementation
โ โ โโโ tools/ # MCP tool definitions
โ โ โโโ types.ts # TypeScript type definitions
โ โโโ utils/ # Utility functions
โ โโโ index.ts # Main entry point
โโโ docs/ # Swagger documentation directory
โ โโโ [project-name]/ # Individual project folders
โ โโโ swagger.json # Swagger/OpenAPI JSON files
โโโ package.json
โโโ tsconfig.json
โโโ README.md
๐ ๏ธ Installation
Prerequisites
- Node.js >= 18.0.0
- pnpm >= 8.0.0
Setup
# Clone the repository
git clone <repository-url>
cd swagger-json-mcp
# Install dependencies
pnpm install
# Build the project
pnpm build
# Run tests
pnpm test
๐ Quick Start
1. Prepare Your Swagger Files
Create project directories under docs/ and place your swagger.json files:
docs/
โโโ your-api-project/
โ โโโ swagger.json
โโโ another-project/
โโโ swagger.json
2. Start the MCP Server
# Development mode
pnpm dev
# Production mode
pnpm start
3. Configure MCP Client
Add to your MCP client configuration:
{
"mcpServers": {
"swagger-json": {
"command": "node",
"args": ["path/to/swagger-json-mcp/dist/index.js"],
"env": {}
}
}
}
๐ Usage Examples
List Available Projects
// MCP Tool Call
{
"name": "list_swaggers",
"arguments": {}
}
// Response
{
"projects": [
{
"name": "your-api-project",
"title": "Your API",
"version": "1.0.0",
"apiCount": 42,
"schemaCount": 28
}
]
}
Get API Information
// MCP Tool Call
{
"name": "get_api_info",
"arguments": {
"swaggerName": "your-api-project",
"path": "/api/users",
"method": "post"
}
}
// Response includes fully resolved schemas
{
"path": "/api/users",
"method": "post",
"summary": "Create user",
"requestBody": {
// Fully resolved schema without $ref
},
"responses": {
// Fully resolved response schemas
}
}
Search APIs
// MCP Tool Call
{
"name": "search_apis",
"arguments": {
"query": "user login",
"swaggerName": "your-api-project",
"method": "post"
}
}
// Response
{
"results": [
{
"path": "/auth/login",
"method": "post",
"summary": "User login",
"score": 0.95
}
]
}
Resolve Complex Schemas
// MCP Tool Call
{
"name": "get_schema",
"arguments": {
"swaggerName": "your-api-project",
"schemaName": "UserProfile",
"maxDepth": 10
}
}
// Response includes all nested schemas resolved
{
"schema": {
"type": "object",
"properties": {
// All $ref references resolved recursively
}
},
"dependencies": ["Address", "ContactInfo"],
"circularReferences": []
}
๐งช Development
Available Scripts
pnpm build # Compile TypeScript
pnpm dev # Development with hot reload
pnpm test # Run test suite
pnpm lint # Run ESLint
pnpm typecheck # TypeScript type checking
pnpm prettier # Format code
pnpm clean # Clean build directory
Code Quality
- TypeScript: Strict mode enabled with comprehensive type definitions
- ESLint: Configured with TypeScript and Prettier rules
- Vitest: Fast unit testing with full coverage
- Prettier: Consistent code formatting
Testing
# Run all tests
pnpm test
# Run tests in watch mode
pnpm test --watch
# Run tests with coverage
pnpm test --coverage
๐๏ธ Architecture
Core Components
SwaggerParser
- Validates and parses Swagger/OpenAPI JSON files
- Handles multiple OpenAPI versions (2.0, 3.0.x)
- Provides structured access to API definitions
SchemaResolver
- Recursively resolves
$refreferences - Detects and handles circular dependencies
- Configurable resolution depth
- Caches resolved schemas for performance
SwaggerManager
- Manages multiple Swagger projects
- Automatic file discovery and loading
- Project lifecycle management
- Thread-safe operations
MCP Integration
- Full compliance with Model Context Protocol specification
- Structured tool definitions with comprehensive validation
- Error handling and logging
- Async/await throughout for optimal performance
๐ง Configuration
Environment Variables
# Optional: Set log level
LOG_LEVEL=info
# Optional: Custom docs directory
DOCS_DIR=./custom-docs
# Optional: Maximum schema resolution depth
MAX_SCHEMA_DEPTH=10
Customization
- Modify
src/utils/logger.tsfor custom logging - Extend
src/core/SwaggerManager.tsfor additional project types - Add new MCP tools in
src/mcp/tools/
๐ค Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/new-feature - Make your changes with tests
- Run the test suite:
pnpm test - Ensure code quality:
pnpm lint && pnpm typecheck - Commit changes:
git commit -m 'Add new feature' - Push to branch:
git push origin feature/new-feature - Submit a pull request
Development Guidelines
- Follow existing code style and conventions
- Add tests for new functionality
- Update documentation for API changes
- Ensure TypeScript compliance
- Write clear, descriptive commit messages
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Troubleshooting
Common Issues
Project not loading
- Verify
docs/directory structure - Check
swagger.jsonfile validity - Ensure proper JSON formatting
$ref resolution failing
- Validate JSON Schema reference paths
- Check for circular references
- Verify component definitions exist
MCP connection issues
- Confirm server startup success
- Validate MCP client configuration
- Check Node.js version compatibility
Debug Mode
Enable detailed logging:
LOG_LEVEL=debug pnpm start
๐ Acknowledgments
- Model Context Protocol - Protocol specification
- OpenAPI Specification - API documentation standard
- TypeScript - Type-safe JavaScript
- Vitest - Fast testing framework
Made with โค๏ธ for better API documentation accessibility
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.