aparajithn/agent-deploy-dashboard-mcp
Unified deployment management MCP server for Vercel, Render, Railway, and Fly.io
Platform-specific configuration:
{
"mcpServers": {
"agent-deploy-dashboard-mcp": {
"command": "npx",
"args": [
"-y",
"agent-deploy-dashboard-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Unified deployment management for AI agents ā manage Vercel, Render, Railway, and Fly.io services from a single MCP + REST API.
[](https://opensource.org/licenses/MIT)
š Multi-Platform Support ā Manage Vercel, Render, Railway, and Fly.io from one interface š Deployment Status ā Check deploy status and health across all platforms š Unified Logging ā Tail logs and view build logs āļø Environment Management ā List, update, and manage env vars š Redeploy Operations ā Trigger redeployments and rollbacks š° x402 Micropayments ā Built-in payment middleware for API monetization š Rate Limiting ā 50 free requests/IP/day with paid tier support
Add to your MCP settings file (cline_mcp_settings.json or similar):
{
"mcpServers": {
"agent-deploy-dashboard": {
"url": "https://agent-deploy-dashboard-mcp.onrender.com/mcp"
}
}
}Base URL: https://agent-deploy-dashboard-mcp.onrender.com
curl -X GET https://agent-deploy-dashboard-mcp.onrender.com/api/v1/list_all_servicesResponse:
{
"success": true,
"services": [
{
"id": "prj_abc123",
"name": "my-app",
"platform": "vercel",
"url": "https://my-app.vercel.app",
"framework": "nextjs"
},
{
"id": "srv_xyz789",
"name": "api-service",
"platform": "render",
"type": "web_service",
"region": "oregon"
}
],
"count": 2
}curl -X POST https://agent-deploy-dashboard-mcp.onrender.com/api/v1/get_deploy_status \
-H "Content-Type: application/json" \
-d '{
"platform": "vercel",
"service_id": "prj_abc123"
}'Response:
{
"success": true,
"platform": "vercel",
"service_id": "prj_abc123",
"deployment_id": "Loading reviews...