# MCP Platform
[](https://pypi.org/project/mcp-platform/)
[](https://pypi.org/project/mcp-platform/)
[](LICENSE)
[](https://discord.gg/55Cfxe9gnr)
[](https://archestra.ai/mcp-catalog/data-everything__mcp-platform)
<div align="center">
**[π Documentation](https://data-everything.github.io/MCP-Platform/)** β’ **[π¬ Discord Community](https://discord.gg/55Cfxe9gnr)** β’ **[π Quick Start](#-quick-start)**
</div>
> **The definitive platform for deploying Model Context Protocol (MCP) servers in production.**
Zero-configuration deployment of production-ready MCP servers with Docker containers, comprehensive CLI tools, intelligent caching, and enterprise-grade management features. Focus on AI integration, not infrastructure setup.
---
# MCP Server Templates (Legacy)
> **β οΈ This version is in maintenance mode. Please migrate to [MCP Platform](https://github.com/Data-Everything/MCP-Platform) for latest features and updates.**
[](https://pypi.org/project/mcp-templates/)
[](https://pypi.org/project/mcp-templates/)
[](LICENSE)
[](https://discord.gg/55Cfxe9gnr)
<div align="center">
**οΏ½ [Migrate to MCP Platform](https://github.com/Data-Everything/MCP-Platform)** β’ **[π¬ Discord Community](https://discord.gg/55Cfxe9gnr)** β’ **[οΏ½ Legacy Docs](#-quick-start)**
</div>
> **Deploy Model Context Protocol (MCP) servers in seconds, not hours.**
Zero-configuration deployment of production-ready MCP servers with Docker containers, comprehensive CLI tools, and intelligent caching. Focus on AI integration, not infrastructure setup.
---
## π Quick Start
```bash
# Install MCP Templates
pip install mcp-platform
# List available templates
mcpp list
# Deploy instantly
mcpp deploy demo
# View deployment
mcpp logs demo
```
**That's it!** Your MCP server is running at `http://localhost:8080`
---
## β‘ Why MCP Templates?
| Traditional MCP Setup | With MCP Templates |
|----------------------|-------------------|
| β Complex configuration | β
One-command deployment |
| β Docker expertise required | β
Zero configuration needed |
| β Manual tool discovery | β
Automatic detection |
| β Environment setup headaches | β
Pre-built containers |
**Perfect for:** AI developers, data scientists, DevOps teams building with MCP.
---
## π Key Features
### π±οΈ **One-Click Deployment**
Deploy MCP servers instantly with pre-built templatesβno Docker knowledge required.
### π **Smart Tool Discovery**
Automatically finds and showcases every tool your server offers.
### π§ **Intelligent Caching**
6-hour template caching with automatic invalidation for lightning-fast operations.
### π» **Powerful CLI**
Comprehensive command-line interface for deployment, management, and tool execution.
### π οΈ **Flexible Configuration**
Configure via JSON, YAML, environment variables, CLI options, or override parameters.
### π¦ **Growing Template Library**
Ready-to-use templates for common use cases: filesystem, databases, APIs, and more.
---
## π Installation
### PyPI (Recommended)
```bash
pip install mcp-platform
```
### Docker
```bash
docker run --privileged -it dataeverything/mcp-server-templates:latest deploy demo
```
### From Source
```bash
git clone https://github.com/DataEverything/mcp-server-templates.git
cd mcp-server-templates
pip install -r requirements.txt
```
---
## π― Common Use Cases
### Deploy with Custom Configuration
```bash
# Basic deployment
mcpp deploy filesystem --config allowed_dirs="/path/to/data"
# Advanced overrides
mcpp deploy demo --override metadata__version=2.0 --transport http
```
### Manage Deployments
```bash
# List all deployments
mcpp list --deployed
# Stop a deployment
mcpp stop demo
# View logs
mcpp logs demo --follow
```
### Template Development
```bash
# Create new template
mcpp create my-template
# Test locally
mcpp deploy my-template --backend mock
```
---
## ποΈ Architecture
```
βββββββββββββββ βββββββββββββββββββββ βββββββββββββββββββββββ
β CLI Tool βββββΆβ DeploymentManager βββββΆβ Backend (Docker) β
β (mcpp) β β β β β
βββββββββββββββ βββββββββββββββββββββ βββββββββββββββββββββββ
β β β
βΌ βΌ βΌ
βββββββββββββββ βββββββββββββββββββββ βββββββββββββββββββββββ
β Template β β CacheManager β β Container Instance β
β Discovery β β (6hr TTL) β β β
βββββββββββββββ βββββββββββββββββββββ βββββββββββββββββββββββ
```
**Configuration Flow:** Template Defaults β Config File β CLI Options β Environment Variables
---
## π¦ Available Templates
| Template | Description | Transport | Use Case |
|----------|-------------|-----------|----------|
| **demo** | Hello world MCP server | HTTP, stdio | Testing & learning |
| **filesystem** | Secure file operations | stdio | File management |
| **gitlab** | GitLab API integration | stdio | CI/CD workflows |
| **github** | GitHub API integration | stdio | Development workflows |
| **zendesk** | Customer support tools | HTTP, stdio | Support automation |
[View all templates β](https://data-everything.github.io/mcp-server-templates/server-templates/)
---
## π οΈ Configuration Examples
### Basic Configuration
```bash
mcpp deploy filesystem --config allowed_dirs="/home/user/data"
```
### Advanced Configuration
```bash
mcpp deploy gitlab \
--config gitlab_token="$GITLAB_TOKEN" \
--config read_only_mode=true \
--override metadata__version=1.2.0 \
--transport stdio
```
### Configuration File
```json
{
"allowed_dirs": "/home/user/projects",
"log_level": "DEBUG",
"security": {
"read_only": false,
"max_file_size": "100MB"
}
}
```
```bash
mcpp deploy filesystem --config-file myconfig.json
```
---
## π§ Template Development
### Creating Templates
1. **Use the generator**:
```bash
mcpp create my-template
```
2. **Define template.json**:
```json
{
"name": "My Template",
"description": "Custom MCP server",
"docker_image": "my-org/my-mcp-server",
"transport": {
"default": "stdio",
"supported": ["stdio", "http"]
},
"config_schema": {
"type": "object",
"properties": {
"api_key": {
"type": "string",
"env_mapping": "API_KEY",
"sensitive": true
}
}
}
}
```
3. **Test and deploy**:
```bash
mcpp deploy my-template --backend mock
```
[Full template development guide β](https://data-everything.github.io/mcp-server-templates/templates/creating/)
---
## οΏ½ Migration to MCP Platform
**This repository has evolved into MCP Platform with enhanced features and better architecture.**
### Why We Moved
1. **Better Naming**: "MCP Platform" better reflects the comprehensive nature of the project
2. **Enhanced Architecture**: Improved codebase structure and performance
3. **Expanded Features**: More deployment options, better tooling, enhanced templates
4. **Future Growth**: Better positioned for upcoming MCP ecosystem developments
### What Stays the Same
- β
All your existing configurations work unchanged
- β
Same Docker images and templates
- β
Same deployment workflows
- β
Full backward compatibility during transition
### Migration Steps
1. **Install new package:**
```bash
pip uninstall mcp-templates
pip install mcp-platform
```
2. **Update commands:**
```bash
# Old command
mcpp deploy demo
# New command (everything else identical)
mcpp deploy demo
```
3. **Update documentation bookmarks:**
- New docs: https://data-everything.github.io/MCP-Platform/
- New repository: https://github.com/Data-Everything/MCP-Platform
### Support Timeline
- **Current (Legacy) Package**: Security updates only through 2025
- **New Platform**: Active development, new features, full support
- **Migration Support**: Available through Discord and GitHub issues
**π [Start your migration now β](https://github.com/Data-Everything/MCP-Platform)**
---
## οΏ½π Documentation (Legacy)
- **[Getting Started](https://data-everything.github.io/mcp-server-templates/getting-started/)** - Installation and first deployment
- **[CLI Reference](https://data-everything.github.io/mcp-server-templates/cli/)** - Complete command documentation
- **[Template Guide](https://data-everything.github.io/mcp-server-templates/templates/)** - Creating and configuring templates
- **[User Guide](https://data-everything.github.io/mcp-server-templates/user-guide/)** - Advanced usage and best practices
---
## π€ Community
- **[Discord Server](https://discord.gg/55Cfxe9gnr)** - Get help and discuss features
- **[GitHub Issues](https://github.com/DataEverything/mcp-server-templates/issues)** - Report bugs and request features
- **[Discussions](https://github.com/DataEverything/mcp-server-templates/discussions)** - Share templates and use cases
---
## π License
This project is licensed under the [Elastic License 2.0](LICENSE).
---
## π Acknowledgments
Built with β€οΈ for the MCP community. Thanks to all contributors and template creators!
Raw data
{
"_id": null,
"home_page": null,
"name": "mcp-platform",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "MCP, Model Context Protocol, AI Platform, Server Deployment, Docker, Kubernetes, MCP Platform",
"author": null,
"author_email": "Sam Arora <tooling@dataeverything.com>",
"download_url": "https://files.pythonhosted.org/packages/90/cc/1c763d125fa7216d81ec2dc81cb1a4e15a7923db0e155e4e00f603395ec0/mcp_platform-1.3.1.tar.gz",
"platform": null,
"description": "# MCP Platform\n\n[](https://pypi.org/project/mcp-platform/)\n[](https://pypi.org/project/mcp-platform/)\n[](LICENSE)\n[](https://discord.gg/55Cfxe9gnr)\n\n[](https://archestra.ai/mcp-catalog/data-everything__mcp-platform)\n\n<div align=\"center\">\n\n**[\ud83d\udcda Documentation](https://data-everything.github.io/MCP-Platform/)** \u2022 **[\ud83d\udcac Discord Community](https://discord.gg/55Cfxe9gnr)** \u2022 **[\ud83d\ude80 Quick Start](#-quick-start)**\n\n</div>\n\n> **The definitive platform for deploying Model Context Protocol (MCP) servers in production.**\n\nZero-configuration deployment of production-ready MCP servers with Docker containers, comprehensive CLI tools, intelligent caching, and enterprise-grade management features. Focus on AI integration, not infrastructure setup.\n\n---\n\n# MCP Server Templates (Legacy)\n\n> **\u26a0\ufe0f This version is in maintenance mode. Please migrate to [MCP Platform](https://github.com/Data-Everything/MCP-Platform) for latest features and updates.**\n\n[](https://pypi.org/project/mcp-templates/)\n[](https://pypi.org/project/mcp-templates/)\n[](LICENSE)\n[](https://discord.gg/55Cfxe9gnr)\n\n<div align=\"center\">\n\n**\ufffd [Migrate to MCP Platform](https://github.com/Data-Everything/MCP-Platform)** \u2022 **[\ud83d\udcac Discord Community](https://discord.gg/55Cfxe9gnr)** \u2022 **[\ufffd Legacy Docs](#-quick-start)**\n\n</div>\n\n> **Deploy Model Context Protocol (MCP) servers in seconds, not hours.**\n\nZero-configuration deployment of production-ready MCP servers with Docker containers, comprehensive CLI tools, and intelligent caching. Focus on AI integration, not infrastructure setup.\n\n---\n\n## \ud83d\ude80 Quick Start\n\n```bash\n# Install MCP Templates\npip install mcp-platform\n\n# List available templates\nmcpp list\n\n# Deploy instantly\nmcpp deploy demo\n\n# View deployment\nmcpp logs demo\n```\n\n**That's it!** Your MCP server is running at `http://localhost:8080`\n\n---\n\n## \u26a1 Why MCP Templates?\n\n| Traditional MCP Setup | With MCP Templates |\n|----------------------|-------------------|\n| \u274c Complex configuration | \u2705 One-command deployment |\n| \u274c Docker expertise required | \u2705 Zero configuration needed |\n| \u274c Manual tool discovery | \u2705 Automatic detection |\n| \u274c Environment setup headaches | \u2705 Pre-built containers |\n\n**Perfect for:** AI developers, data scientists, DevOps teams building with MCP.\n\n---\n\n## \ud83c\udf1f Key Features\n\n### \ud83d\uddb1\ufe0f **One-Click Deployment**\nDeploy MCP servers instantly with pre-built templates\u2014no Docker knowledge required.\n\n### \ud83d\udd0d **Smart Tool Discovery**\nAutomatically finds and showcases every tool your server offers.\n\n### \ud83e\udde0 **Intelligent Caching**\n6-hour template caching with automatic invalidation for lightning-fast operations.\n\n### \ud83d\udcbb **Powerful CLI**\nComprehensive command-line interface for deployment, management, and tool execution.\n\n### \ud83d\udee0\ufe0f **Flexible Configuration**\nConfigure via JSON, YAML, environment variables, CLI options, or override parameters.\n\n### \ud83d\udce6 **Growing Template Library**\nReady-to-use templates for common use cases: filesystem, databases, APIs, and more.\n\n---\n\n## \ud83d\udcda Installation\n\n### PyPI (Recommended)\n```bash\npip install mcp-platform\n```\n\n### Docker\n```bash\ndocker run --privileged -it dataeverything/mcp-server-templates:latest deploy demo\n```\n\n### From Source\n```bash\ngit clone https://github.com/DataEverything/mcp-server-templates.git\ncd mcp-server-templates\npip install -r requirements.txt\n```\n\n---\n\n## \ud83c\udfaf Common Use Cases\n\n### Deploy with Custom Configuration\n```bash\n# Basic deployment\nmcpp deploy filesystem --config allowed_dirs=\"/path/to/data\"\n\n# Advanced overrides\nmcpp deploy demo --override metadata__version=2.0 --transport http\n```\n\n### Manage Deployments\n```bash\n# List all deployments\nmcpp list --deployed\n\n# Stop a deployment\nmcpp stop demo\n\n# View logs\nmcpp logs demo --follow\n```\n\n### Template Development\n```bash\n# Create new template\nmcpp create my-template\n\n# Test locally\nmcpp deploy my-template --backend mock\n```\n\n---\n\n## \ud83c\udfd7\ufe0f Architecture\n\n```\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 CLI Tool \u2502\u2500\u2500\u2500\u25b6\u2502 DeploymentManager \u2502\u2500\u2500\u2500\u25b6\u2502 Backend (Docker) \u2502\n\u2502 (mcpp) \u2502 \u2502 \u2502 \u2502 \u2502\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518 \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518 \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2502 \u2502 \u2502\n \u25bc \u25bc \u25bc\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 Template \u2502 \u2502 CacheManager \u2502 \u2502 Container Instance \u2502\n\u2502 Discovery \u2502 \u2502 (6hr TTL) \u2502 \u2502 \u2502\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518 \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518 \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n```\n\n**Configuration Flow:** Template Defaults \u2192 Config File \u2192 CLI Options \u2192 Environment Variables\n\n---\n\n## \ud83d\udce6 Available Templates\n\n| Template | Description | Transport | Use Case |\n|----------|-------------|-----------|----------|\n| **demo** | Hello world MCP server | HTTP, stdio | Testing & learning |\n| **filesystem** | Secure file operations | stdio | File management |\n| **gitlab** | GitLab API integration | stdio | CI/CD workflows |\n| **github** | GitHub API integration | stdio | Development workflows |\n| **zendesk** | Customer support tools | HTTP, stdio | Support automation |\n\n[View all templates \u2192](https://data-everything.github.io/mcp-server-templates/server-templates/)\n\n---\n\n## \ud83d\udee0\ufe0f Configuration Examples\n\n### Basic Configuration\n```bash\nmcpp deploy filesystem --config allowed_dirs=\"/home/user/data\"\n```\n\n### Advanced Configuration\n```bash\nmcpp deploy gitlab \\\n --config gitlab_token=\"$GITLAB_TOKEN\" \\\n --config read_only_mode=true \\\n --override metadata__version=1.2.0 \\\n --transport stdio\n```\n\n### Configuration File\n```json\n{\n \"allowed_dirs\": \"/home/user/projects\",\n \"log_level\": \"DEBUG\",\n \"security\": {\n \"read_only\": false,\n \"max_file_size\": \"100MB\"\n }\n}\n```\n\n```bash\nmcpp deploy filesystem --config-file myconfig.json\n```\n\n---\n\n## \ud83d\udd27 Template Development\n\n### Creating Templates\n\n1. **Use the generator**:\n ```bash\n mcpp create my-template\n ```\n\n2. **Define template.json**:\n ```json\n {\n \"name\": \"My Template\",\n \"description\": \"Custom MCP server\",\n \"docker_image\": \"my-org/my-mcp-server\",\n \"transport\": {\n \"default\": \"stdio\",\n \"supported\": [\"stdio\", \"http\"]\n },\n \"config_schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"api_key\": {\n \"type\": \"string\",\n \"env_mapping\": \"API_KEY\",\n \"sensitive\": true\n }\n }\n }\n }\n ```\n\n3. **Test and deploy**:\n ```bash\n mcpp deploy my-template --backend mock\n ```\n\n[Full template development guide \u2192](https://data-everything.github.io/mcp-server-templates/templates/creating/)\n\n---\n\n## \ufffd Migration to MCP Platform\n\n**This repository has evolved into MCP Platform with enhanced features and better architecture.**\n\n### Why We Moved\n\n1. **Better Naming**: \"MCP Platform\" better reflects the comprehensive nature of the project\n2. **Enhanced Architecture**: Improved codebase structure and performance\n3. **Expanded Features**: More deployment options, better tooling, enhanced templates\n4. **Future Growth**: Better positioned for upcoming MCP ecosystem developments\n\n### What Stays the Same\n\n- \u2705 All your existing configurations work unchanged\n- \u2705 Same Docker images and templates\n- \u2705 Same deployment workflows\n- \u2705 Full backward compatibility during transition\n\n### Migration Steps\n\n1. **Install new package:**\n ```bash\n pip uninstall mcp-templates\n pip install mcp-platform\n ```\n\n2. **Update commands:**\n ```bash\n # Old command\n mcpp deploy demo\n\n # New command (everything else identical)\n mcpp deploy demo\n ```\n\n3. **Update documentation bookmarks:**\n - New docs: https://data-everything.github.io/MCP-Platform/\n - New repository: https://github.com/Data-Everything/MCP-Platform\n\n### Support Timeline\n\n- **Current (Legacy) Package**: Security updates only through 2025\n- **New Platform**: Active development, new features, full support\n- **Migration Support**: Available through Discord and GitHub issues\n\n**\ud83d\ude80 [Start your migration now \u2192](https://github.com/Data-Everything/MCP-Platform)**\n\n---\n\n## \ufffd\ud83d\udcd6 Documentation (Legacy)\n\n- **[Getting Started](https://data-everything.github.io/mcp-server-templates/getting-started/)** - Installation and first deployment\n- **[CLI Reference](https://data-everything.github.io/mcp-server-templates/cli/)** - Complete command documentation\n- **[Template Guide](https://data-everything.github.io/mcp-server-templates/templates/)** - Creating and configuring templates\n- **[User Guide](https://data-everything.github.io/mcp-server-templates/user-guide/)** - Advanced usage and best practices\n\n---\n\n## \ud83e\udd1d Community\n\n- **[Discord Server](https://discord.gg/55Cfxe9gnr)** - Get help and discuss features\n- **[GitHub Issues](https://github.com/DataEverything/mcp-server-templates/issues)** - Report bugs and request features\n- **[Discussions](https://github.com/DataEverything/mcp-server-templates/discussions)** - Share templates and use cases\n\n---\n\n## \ud83d\udcdd License\n\nThis project is licensed under the [Elastic License 2.0](LICENSE).\n\n---\n\n## \ud83d\ude4f Acknowledgments\n\nBuilt with \u2764\ufe0f for the MCP community. Thanks to all contributors and template creators!\n",
"bugtrack_url": null,
"license": null,
"summary": "MCP Platform: Production-ready Model Context Protocol server deployment and management platform",
"version": "1.3.1",
"project_urls": {
"Bug-Reports": "https://github.com/Data-Everything/MCP-Platform/issues",
"Documentation": "https://data-everything.github.io/MCP-Platform",
"Issue-Tracker": "https://github.com/Data-Everything/MCP-Platform/issues",
"Source": "https://github.com/Data-Everything/MCP-Platform"
},
"split_keywords": [
"mcp",
" model context protocol",
" ai platform",
" server deployment",
" docker",
" kubernetes",
" mcp platform"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "adc38ee0c908aacfd15c66635c5b2676d051c58cc3467b5cf4b78e5fa0305898",
"md5": "2d4795558308e696e93c31ba42645adc",
"sha256": "6e2af41579c77778591b2fd3fa5ba98689ebaa3831aacaea6c716c4c7ef18d89"
},
"downloads": -1,
"filename": "mcp_platform-1.3.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2d4795558308e696e93c31ba42645adc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 682825,
"upload_time": "2025-10-23T03:33:30",
"upload_time_iso_8601": "2025-10-23T03:33:30.447438Z",
"url": "https://files.pythonhosted.org/packages/ad/c3/8ee0c908aacfd15c66635c5b2676d051c58cc3467b5cf4b78e5fa0305898/mcp_platform-1.3.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90cc1c763d125fa7216d81ec2dc81cb1a4e15a7923db0e155e4e00f603395ec0",
"md5": "ad4c91e2e00dba470471e02970100e41",
"sha256": "f55fa0ae70f6f6e0e66106aaacf29c2dfce39e0b9beac7c8a723e028c9d4b419"
},
"downloads": -1,
"filename": "mcp_platform-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "ad4c91e2e00dba470471e02970100e41",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 598753,
"upload_time": "2025-10-23T03:33:32",
"upload_time_iso_8601": "2025-10-23T03:33:32.941715Z",
"url": "https://files.pythonhosted.org/packages/90/cc/1c763d125fa7216d81ec2dc81cb1a4e15a7923db0e155e4e00f603395ec0/mcp_platform-1.3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-23 03:33:32",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Data-Everything",
"github_project": "MCP-Platform",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "rich",
"specs": [
[
">=",
"13.0.0"
]
]
},
{
"name": "pyyaml",
"specs": []
},
{
"name": "fastmcp",
"specs": [
[
">=",
"2.10.0"
]
]
},
{
"name": "requests",
"specs": [
[
">=",
"2.25.0"
]
]
},
{
"name": "cmd2",
"specs": [
[
"==",
"2.7"
]
]
},
{
"name": "setuptools_scm",
"specs": [
[
">=",
"8.3.1"
]
]
},
{
"name": "aiohttp",
"specs": [
[
">=",
"3.8.0"
]
]
},
{
"name": "typer",
"specs": [
[
">=",
"0.16.0"
]
]
},
{
"name": "kubernetes",
"specs": [
[
">=",
"33.1.0"
]
]
},
{
"name": "tenacity",
"specs": [
[
">=",
"9.1.2"
]
]
}
],
"lcname": "mcp-platform"
}