Developer hub platform for API documentation.
## ReadMe MCP Server: API Documentation The **ReadMe MCP Server** integrates ReadMe's developer hub platform into Google Antigravity, enabling developers to create, manage, and maintain API documentation through AI-assisted documentation workflows. ### Why ReadMe MCP? - **Interactive Docs**: API Explorer for testing endpoints directly - **Metrics & Analytics**: Track documentation usage and API calls - **Changelog Management**: Maintain API changelogs automatically - **Custom Branding**: Fully customizable developer hub design - **OpenAPI Sync**: Automatic sync with OpenAPI/Swagger specs ### Key Features #### 1. Documentation Management ```javascript // Create documentation page const page = await readme.createDoc({ title: "Authentication", category: "getting-started", body: "# Authentication\n\n## API Keys\n...", hidden: false, order: 1 }); // Update documentation await readme.updateDoc({ slug: "authentication", body: updatedContent, category: "getting-started" }); // Search documentation const results = await readme.searchDocs({ search: "rate limiting" }); // Get documentation page const doc = await readme.getDoc({ slug: "authentication" }); ``` #### 2. API Reference and Changelog ```javascript // Upload OpenAPI spec await readme.uploadApiSpec({ spec: openApiSpec, version: "1.0.0" }); // Create changelog entry await readme.createChangelog({ title: "API v2.0 Released", body: "## New Features\n- OAuth2 support\n- Rate limiting...", type: "added" }); // Get API metrics const metrics = await readme.getApiMetrics({ endpoint: "/users", method: "GET", dateRange: "last_30_days" }); ``` ### Configuration ```json { "mcpServers": { "readme": { "command": "npx", "args": ["-y", "@anthropic/mcp-readme"], "env": { "README_API_KEY": "your-api-key", "README_PROJECT_VERSION": "1.0.0" } } } } ``` ### Use Cases **API Documentation**: Create and maintain interactive API documentation. **Developer Experience**: Build comprehensive developer hubs with guides and references. **Documentation Analytics**: Track which docs are most useful to developers. The ReadMe MCP Server brings professional API documentation to your workflow.
{
"mcpServers": {
"readme": {}
}
}