π Community-maintained registry for Model Context Protocol plugins - discover, share, and distribute MCP plugins
The MCP Plugins Registry is a central hub for discovering and sharing plugins built with the MCP Protocol SDK. This registry helps developers find existing plugins and share their own creations with the community.
View the complete list of plugins in registry.json or use our search API.
- Database: PostgreSQL, MongoDB, MySQL, Redis connectors
- Integrations: Stripe, Slack, Discord, GitHub, GitLab
- AI/ML: OpenAI, Anthropic, Hugging Face, LangChain
- Cloud: AWS, Azure, GCP, Cloudflare
- DevOps: Docker, Kubernetes, Terraform, Ansible
- Analytics: Prometheus, Grafana, DataDog, New Relic
- Communication: Email, SMS, Push notifications
- Storage: S3, MinIO, FTP, SFTP
- Utilities: JSON/XML processing, encryption, compression
- Plugin must be built with MCP Protocol SDK
- Include proper documentation
- Provide example usage
- Specify compatible MCP SDK version
- Include license information
- Fork this repository
- Add your plugin to
registry.json
- Update category listings if needed
- Submit a pull request
{
"name": "your-plugin-name",
"version": "1.0.0",
"description": "Brief description of what your plugin does",
"author": "Your Name or Organization",
"repository": "https://github.com/username/plugin-repo",
"category": ["primary-category", "secondary-category"],
"keywords": ["mcp", "plugin", "your", "keywords"],
"mcp_sdk_version": ">=0.6.0",
"license": "MIT",
"homepage": "https://your-plugin-docs.com",
"pricing": "free" | "paid" | "freemium",
"marketplace_url": "optional-marketplace-listing-url"
}
Plugins can be installed directly from their repositories:
# Using cargo
cargo add plugin-name --git https://github.com/author/plugin-name
# Or add to Cargo.toml
[dependencies]
plugin-name = { git = "https://github.com/author/plugin-name" }
use mcp_protocol_sdk::plugin::PluginLoader;
use your_plugin::YourPlugin;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut loader = PluginLoader::new();
loader.register_plugin(YourPlugin::new()).await?;
// Plugin is now available in your MCP application
Ok(())
}
GET /api/plugins
- List all pluginsGET /api/plugins/:name
- Get specific plugin detailsGET /api/categories
- List all categoriesGET /api/search?q=query
- Search plugins
# Search for database plugins
curl https://api.mcp-registry.dev/search?category=database
# Get specific plugin info
curl https://api.mcp-registry.dev/plugins/postgres-connector
- postgres-connector - Full-featured PostgreSQL integration
- stripe-payments - Complete Stripe payment processing
- openai-bridge - OpenAI API integration with streaming
- slack-bot - Slack workspace integration
- s3-storage - AWS S3 compatible storage
- mongodb-atlas - MongoDB Atlas cloud database connector
- discord-events - Discord bot and event handling
- github-actions - GitHub Actions workflow integration
- Total Plugins: 0 (registry just created!)
- Categories: 10
- Contributors: 0
- Weekly Downloads: 0
We welcome contributions! Please see CONTRIBUTING.md for guidelines.
- Submit your plugins
- Improve registry infrastructure
- Add search/filter features
- Create plugin templates
- Write documentation
- Review submissions
This registry is MIT licensed. Individual plugins may have their own licenses.
- MCP Protocol SDK
- Plugin Development Guide
- MCP Developer Tools
- Official Documentation
- Community Discord
For advanced features, automated containerization, and marketplace distribution, check out MCP Platform.
Maintained by the MCP community. Not officially affiliated with Anthropic.
Repository | Description | License |
---|---|---|
MCP Protocol SDK | Free, open-source Rust SDK with plugin system | MIT |
MCP Dev Tools | CLI, VS Code extension, and utilities | MIT |
MCP Plugins | Community plugin implementations | Apache 2.0 |
MCP Registry | Plugin discovery and distribution | MIT |
For advanced features including SSO, SAML, monitoring, compliance tools, and automated marketplace distribution:
MCP Platform - Enterprise-grade features for production deployments
- π Documentation - Comprehensive guides and API references
- π¬ Discord Community - Get help and share ideas
- π Issue Tracker - Report bugs and request features
- π Blog - Tutorials and announcements
- πΌ Professional Support - Enterprise support options
# Install the MCP CLI
cargo install mcp-cli
# Create a new plugin
mcp new my-plugin
# Browse available plugins
mcp search
We welcome contributions! Please see our Contributing Guidelines and sign the CLA before submitting pull requests.
This project's license information is available in the LICENSE file.