Skip to main content
You do not need full agent orchestration to benefit from the platform. Use mcp-agent cloud to host plain MCP servers that expose tools, resources, and prompts. Typical scenarios:
  • A catalogue of internal services (Jira, GitHub, PagerDuty) surfaced to MCP clients.
  • Reusable data access layers (BI dashboards, CRM fetchers).
  • Utility toolkits (formatting, encryption, validation) shared across teams.
  • Bridges that wrap legacy gRPC/REST APIs in MCP.

Quick workflow

Project layout

Minimal config:
Even though you are not using Temporal, the platform still provides logging, secrets, and auth.

Authentication modes

  • Bearer token (default) – users set MCP_API_KEY or run mcp-agent login.
  • Unauthenticated – deploy with --no-auth for public servers or ChatGPT Apps.
  • OAuth (coming soon) – follow updates in Authentication →.

Observability & operations

  • mcp-agent cloud logger tail <name> – inspect logs, filter by regex, follow in real time.
  • mcp-agent cloud servers list – inventory + status.
  • mcp-agent cloud servers delete <name> – remove deployment.
  • mcp-agent cloud logger configure – forward logs to your OTEL collector.

Evolving into an agent

When you want durable workflows, wrap existing tools with MCPApp and redeploy under the same name. MCP clients continue to work while gaining new capabilities (@app.async_tool, workflow management). See Deploy Agents → for the migration playbook.

Further reading