A modular collection of MCP (Model Context Protocol) servers for building scalable, extensible integrations across APIs and applications. Designed for flexibility and community contributions, enabling developers to create, share, and reuse interoperable MCP-compatible services.
Modern applications require integrating multiple APIs, handling authentication, and maintaining consistency across services. This repository helps by:
- ⚡ Standardizing API interactions using MCP
- 🔌 Enabling plug-and-play integrations
- 🤖 Making services AI-agent compatible
- 🧩 Promoting reusable and modular design
- 🚀 Reducing development effort and time
Result: Faster development, cleaner architecture, and easier scaling.
- Modular MCP server architecture
- Ready-to-use API integration examples
- Multi-app credential handling
- Async support for high performance
- Easily extensible tool system
- Developer-friendly structure
list_whatsapp_profile()send_whatsapp_text(
whatsapp_business_profile="example_app",
to_phone_number="1234567890",
message="Hello from MCP!"
)send_whatsapp_template(
whatsapp_business_profile="example_app",
to_phone_number="1234567890",
template_name="sample_template",
language_code="en"
)- Clone Repository
git clone https://github.com/your-username/MCP_SERVERS.git
cd MCP_SERVERS- Install Dependencies
pip install -r requirements.txtCreate a credentials.json file:
json
[
{
"whatsapp_business_profile": "app1",
"phone_number_id": "your_phone_number_id",
"api_access_token": "your_access_token"
}
]
python server.py- MCP server exposes tools
- Client (AI / app) invokes tools
- Server processes request
- External API is called
- Structured response is returned
MCP_SERVERS/
│── server.py
│── credentials.json
│── requirements.txt
│── tools/
│── services/
Contributions are welcome! 🎉
- Add new MCP server integrations
- Improve performance or structure
- Submit bug fixes
- Share new ideas
Steps:
- Fork the repo
- Create a branch (
feature/new-server) - Commit changes
- Open a Pull Request
- ✅ Core MCP server framework
- 🔜 More API integrations
- 🔜 Database-backed credentials
- 🔜 Docker support
- 🔜 Deployment templates
MIT License © 2026
If you find this useful:
- ⭐ Star the repo
- 🍴 Fork it
- 🧠 Contribute