registry
Health Warn
- No license — Repository has no license file
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Community trust — 10 GitHub stars
Code Pass
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Pass
- Permissions — No dangerous permissions requested
This project is a registry of 64+ MCP servers that connect AI agents to popular third-party APIs (like GitHub, Google, and Notion). It provides standalone Python packages generated automatically from official OpenAPI specifications.
Security Assessment
Risk Level: Medium. The code itself is clean—a light audit of 12 files found no dangerous patterns, hardcoded secrets, or dangerous permission requests. However, the inherent risk is elevated because the tool's primary function is making outbound network requests to external APIs. Depending on how it is configured, it will routinely handle and transmit sensitive data (such as GitHub credentials, email contents, and CRM details) between the local environment and these third-party services.
Quality Assessment
The project is very new and actively maintained, with its most recent code push happening today. The static analysis confirms basic code health, though community trust is currently minimal given its small footprint of only 10 GitHub stars. A significant legal and operational concern is the lack of a root repository license file. While a badge claims the individual GitHub server is MIT-licensed, the absence of a top-level license means the legal terms for the rest of the registry and its underlying tooling are unclear.
Verdict
Use with caution—the code is safe from local exploits, but you should review the permissions granted to your external API tokens and be aware of the missing root license.
Production-ready MCP servers for 64+ APIs — GitHub, Google, Notion, Jira & more. Generated from OpenAPI specs, tested against live APIs. Works with Claude Desktop, Cursor, Codex & Claude Code.
MCP Armory Registry
Production-ready MCP servers for popular APIs, generated by MCP Blacksmith.
Install · Servers · Features · Usage · License
What is this?
This repository contains MCP (Model Context Protocol) servers that connect AI agents to real-world APIs. Each server is a standalone Python package that exposes an API's functionality as MCP tools.
Every server is generated from the upstream API's OpenAPI specification using MCP Blacksmith and tested against the live API before release. Servers are intended to be hosted on MCP Armory once released, but can also be installed and run independently.
Install
Every server is published as a standalone PyPI package. Pick the one you need:
# With uvx (no install needed)
uvx mcparmory-github
# With pip
pip install mcparmory-github
mcparmory-github
Package names follow the pattern mcparmory-<server-name>.
Each server's README.md has full credential setup and configuration instructions for all launch options (uvx, pip, Docker, Python script, and MCP client JSON).
Servers
🧠 AI & Machine Learning ElevenLabs · Linkup · Parallel API · Perplexity AI API
📊 Analytics Ahrefs API · Datadog · Google Analytics · Google Search Console · Linkly · Mixpanel · PostHog API
⛓️ Blockchain & Crypto Alchemy NFT
💼 CRM & Sales Apollo
💬 Communication Atlassian Confluence · Google Gmail · MailerSend · Mailtrap · Mailtrap Email Sending
🗄️ Data & Databases Enigma · Pinecone Control Plane API
🛠️ Developer Tools AgentQL · Apify · Bitbucket · Bright Data · Browserbase · BuiltWith · Canvas · CircleCI · Codacy · Contentful Management · ConvertAPI · E2B · Firecrawl · GitHub · GitLab · LaunchDarkly
📄 Documents & Printing PDF.co API
💰 Finance Alpha Vantage · Polygon API
👥 HR & Recruiting BambooHR
☁️ Infrastructure Globalping · Grafana
⚖️ Legal & Compliance NetLicensing
🗺️ Maps & Location Google Maps Platform · IP2Location.io IP Geolocation · OpenCage Geocoding
📣 Marketing Customer.io Journeys Track · Klaviyo
🎬 Media & Entertainment Canva · Perigon API
✅ Productivity Airtable · Asana · Atlassian Jira · ClickUp · Figma · Google Sheets · Miro · Notion · Outline
🔍 Search Algolia Search
📦 Storage Box · Files.com · Google Drive
📌 Other Close
More servers are being added continuously.
Features
Every server in this registry provides:
- Full API coverage — all endpoints from the OpenAPI spec are exposed as MCP tools
- Authentication — API key, Bearer token, Basic auth, OAuth2, JWT, OpenID Connect, and mutual TLS
- Multi-auth — servers that support multiple auth methods let you configure whichever you prefer
- Pydantic validation — request parameters are validated before sending to the API
- Resilience — configurable retries with exponential backoff, connection pooling, and timeouts
- Response sanitization — optional redaction of sensitive fields from API responses
Usage
With an MCP client (Claude Desktop, Cursor, Codex, Claude Code)
Add to your MCP client configuration:
{
"mcpServers": {
"github": {
"command": "uvx",
"args": ["mcparmory-github"],
"env": {
"BEARER_TOKEN": "ghp_your_token_here"
}
}
}
}
Run locally
cd servers/github
pip install -r requirements.txt
python server.py
Docker
cd servers/github
docker build -t github-mcp .
docker run -p 8000:8000 --env-file .env github-mcp
Each server's own README.md has detailed setup instructions, including required credentials and configuration.
How servers are generated
Servers are generated by MCP Blacksmith, an automated pipeline that:
- Parses an OpenAPI specification
- Transforms operations through LLM-driven passes (naming, parameter filtering, enhancement, classification)
- Generates a complete MCP server with auth, models, validation, and configuration
- Tests every tool against the live API using an autonomous agent
- Deploys passing servers to this registry
The generator targets Python 3.11+ and uses FastMCP as the MCP framework.
License
Each generated server is released under the MIT License. The underlying APIs have their own terms of service — see individual server READMEs for details.
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found