MCP server/cloud

Agent Deploy Dashboard MCP Server

Unified deployment management for AI agents across multiple platforms.

aparajithn/agent-deploy-dashboard-mcp ↗by aparajithnupdated
1

Add it to Claude Code

claude mcp add --transport http agent-deploy-dashboard https://agent-deploy-dashboard-mcp.onrender.com/mcp
2

Make your agent remember this setup

agent-deploy-dashboard's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.

npx conare@latest

Free · one command · indexes the sessions already on disk. Set up in the browser instead →

What it does

  • Multi-platform support for Vercel, Render, Railway, and Fly.io
  • Unified deployment status and health monitoring
  • Centralized log tailing and build log retrieval
  • Environment variable management (list and update)
  • Automated redeployment and rollback operations

Tools 8

list_all_servicesLists all services across connected platforms.
get_deploy_statusChecks the deployment status and health of a specific service.
tail_logsTails logs for a specific service.
get_env_varsRetrieves environment variables for a service.
set_env_varSets an environment variable for a service.
trigger_redeployTriggers a redeployment for a service.
get_build_logsRetrieves build logs for a specific deployment.
check_healthChecks the health status of a service URL.

Try it

List all my active services on Vercel and Render.
Check the deployment status of my service with ID prj_abc123 on Vercel.
Tail the last 50 lines of logs for my Render service srv_xyz789.
Update the NEW_FEATURE_FLAG environment variable to true for my Render service.
Trigger a redeploy for my Vercel project prj_abc123.
Original README from aparajithn/agent-deploy-dashboard-mcp

Agent Deploy Dashboard MCP Server

Unified deployment management for AI agents — manage Vercel, Render, Railway, and Fly.io services from a single MCP + REST API.

Features

🚀 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

Quick Start

MCP Configuration

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"
    }
  }
}

REST API

Base URL: https://agent-deploy-dashboard-mcp.onrender.com

List All Services
curl -X GET https://agent-deploy-dashboard-mcp.onrender.com/api/v1/list_all_services

Response:

{
  "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
}
Get Deploy Status
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": "dpl_xyz",
  "status": "READY",
  "url": "https://my-app.vercel.app",
  "created_at": 1709823600000
}
Tail Logs
curl -X POST https://agent-deploy-dashboard-mcp.onrender.com/api/v1/tail_logs \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "render",
    "service_id": "srv_xyz789",
    "lines": 50
  }'
Get Environment Variables
curl -X POST https://agent-deploy-dashboard-mcp.onrender.com/api/v1/get_env_vars \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "vercel",
    "service_id": "prj_abc123"
  }'

Response:

{
  "success": true,
  "platform": "vercel",
  "service_id": "prj_abc123",
  "env_vars": {
    "DATABASE_URL": {
      "value": "[ENCRYPTED]",
      "target": ["production"],
      "type": "encrypted"
    },
    "API_KEY": {
      "value": "abc123",
      "target": ["production", "preview"],
      "type": "plain"
    }
  },
  "count": 2
}
Set Environment Variable
curl -X POST https://agent-deploy-dashboard-mcp.onrender.com/api/v1/set_env_var \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "render",
    "service_id": "srv_xyz789",
    "key": "NEW_FEATURE_FLAG",
    "value": "true"
  }'
Trigger Redeploy
curl -X POST https://agent-deploy-dashboard-mcp.onrender.com/api/v1/trigger_redeploy \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "vercel",
    "service_id": "prj_abc123"
  }'
Get Build Logs
curl -X POST https://agent-deploy-dashboard-mcp.onrender.com/api/v1/get_build_logs \
  -H "Content-Type: application/json" \
  -d '{
    "platform": "vercel",
    "deploy_id": "dpl_xyz"
  }'
Check Health
curl -X POST https://agent-deploy-dashboard-mcp.onrender.com/api/v1/check_health \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://my-app.vercel.app/health"
  }'

Response:

{
  "success": true,
  "url": "https://my-app.vercel.app/health",
  "status_code": 200,
  "healthy": true,
  "response_time_ms": 142,
  "headers": {
    "content-type": "application/json",
    "x-vercel-id": "sfo1::abc123"
  }
}

Pricing

Free Tier

  • 50 requests per IP per day
  • All tools included
  • All platforms supported
  • No credit card required

Paid Tier (HTTP 402 Payment)

After free tier exhausted:

  • $0.01 per request
  • Payment via HTTP 402 with crypto wallet
  • Wallet address: 0x8E844a7De89d7CfBFe9B4453E65935A22F146aBB
  • Include X-Payment header with payment proof

Platform Support

Platform List Services Deploy Status Logs Env Vars Redeploy Build Logs
Vercel ✅ Full ✅ Full ⚠️ Build only ✅ Full ✅ Full ✅ Full
Render ✅ Full ✅ Full ✅ Full ✅ Full ✅ Full ✅ Full
Railway ✅ Basic ⏳ Planned ⏳ Planned ⏳ Planned ⏳ Planned ⏳ Planned
Fly.io ✅ Basic ⏳ Planned ⏳ Planned

Frequently Asked Questions

What are the key features of Agent Deploy Dashboard?

Multi-platform support for Vercel, Render, Railway, and Fly.io. Unified deployment status and health monitoring. Centralized log tailing and build log retrieval. Environment variable management (list and update). Automated redeployment and rollback operations.

What can I use Agent Deploy Dashboard for?

Monitoring deployment health across multiple cloud providers from a single AI interface. Quickly updating environment variables for production services without leaving the IDE. Debugging failed deployments by fetching build logs directly through Claude. Automating service redeployments after configuration changes.

How do I install Agent Deploy Dashboard?

Install Agent Deploy Dashboard by running: Add to your MCP settings file (cline_mcp_settings.json or similar)

What MCP clients work with Agent Deploy Dashboard?

Agent Deploy Dashboard works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Conare · memory for coding agents

Turn this server into reusable context

Keep Agent Deploy Dashboard docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Set up free$npx conare@latest