Overview
MCP Agent Cloud can deploy both AI agents and standard MCP servers. Since agents deployed to MCP Agent Cloud are exposed as MCP servers themselves, the platform naturally supports deploying any MCP-compatible server implementation. This means you can use MCP Agent Cloud to:- Deploy regular MCP servers built with FastMCP or other frameworks
- Host tool servers that don’t use AI workflows
- Deploy resource servers for data access
- Run any MCP-compliant server implementation
Key Concept
Deploying an MCP agent is a superset of deploying an MCP server. When you deploy an agent, you get:- All standard MCP server capabilities (tools, resources, prompts)
- Plus: Durable workflow execution via Temporal
- Plus: Built-in workflow management tools
- Plus: Human-in-the-loop support
Deploying Standard MCP Servers
Using FastMCP
Using mcp-agent Without Workflows
Comparison: MCP Server vs MCP Agent
Feature | Standard MCP Server | MCP Agent |
---|---|---|
Tools | ✅ Synchronous tools | ✅ Sync + async tools |
Resources | ✅ Static resources | ✅ Static + dynamic resources |
Prompts | ✅ Template prompts | ✅ Template + context-aware prompts |
Execution | ❌ In-memory only | ✅ Durable via Temporal |
Long-running tasks | ❌ Limited by timeout | ✅ Hours/days/weeks |
Pause/Resume | ❌ Not supported | ✅ Built-in support |
Human-in-the-loop | ❌ Manual implementation | ✅ Native support |
Workflow management | ❌ Not available | ✅ Full lifecycle control |
State persistence | ❌ Application manages | ✅ Automatic via Temporal |
Retry logic | ❌ Manual implementation | ✅ Automatic with backoff |
Monitoring | ⚠️ Basic logging | ✅ Full observability |
Use Cases for MCP Server Deployment
Tool Servers
Deploy servers that provide utility tools without needing AI:Resource Servers
Expose data and APIs as MCP resources:Integration Servers
Bridge existing services to MCP:Deployment Process
The deployment process is identical whether you’re deploying a simple MCP server or a full agent:Benefits of Using MCP Agent Cloud
Even for simple MCP servers, MCP Agent Cloud provides:Infrastructure Management
- Automatic SSL/TLS termination
- Load balancing and auto-scaling
- Regional deployment options
- High availability
Security
- Secure secrets management via Vault
- Authentication and authorization
- End-to-end encryption
- Audit logging
Operations
- Zero-downtime deployments
- Automatic health checks
- Structured logging
- Monitoring and alerting
Developer Experience
- One-command deployment
- Automatic versioning
- Preview environments
- CLI and web management
Migration Path
Start with a simple MCP server and gradually add agent capabilities:Best Practices
- Start Simple: Begin with basic MCP server functionality
- Add Workflows When Needed: Introduce workflows for long-running tasks
- Use Appropriate Execution:
- Synchronous tools for quick operations
- Async tools for I/O-bound operations
- Workflows for complex, multi-step processes
- Monitor Usage: Track which tools are called most frequently
- Version Your Deployments: Use semantic versioning for your servers