> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leanmcp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deployment Overview

> Deploy your MCP servers to production

LeanMCP SDK doesn't lock you into any specific platform. You can deploy your MCPs anywhere you want — LeanMCP Platform, Vercel, AWS, GCP, Azure, or your own infrastructure.

That said, different platforms have different trade-offs. This guide helps you choose the right one.

## Deployment Options

| Platform             | Best For                                   | Limitations            |
| -------------------- | ------------------------------------------ | ---------------------- |
| **LeanMCP Platform** | Production MCPs, monitoring, observability | None for MCPs          |
| **Vercel**           | Simple MCPs, agent frontends               | Timeout limits (5-30s) |
| **AWS/GCP/Azure**    | Enterprise, existing cloud infrastructure  | DevOps overhead        |

## Recommended: LeanMCP Platform

If you're building MCPs, LeanMCP Platform is the easiest choice. It's built specifically for MCPs — monitoring, observability, and auth are built-in. No DevOps required.

Deploy in three commands:

```bash theme={null}
leanmcp login
leanmcp create-project
leanmcp deploy
```

## Other Platforms

The LeanMCP SDK works on any Node.js hosting platform. If you need to deploy on Vercel, AWS, or other cloud providers, we have guides for each:

<CardGroup cols={2}>
  <Card title="LeanMCP Platform" icon="rocket" href="/deploy/leanmcp-platform">
    Easiest way to deploy MCPs
  </Card>

  <Card title="Vercel" icon="triangle" href="/deploy/vercel">
    For simple MCPs and agent frontends
  </Card>

  <Card title="AWS, GCP, Azure" icon="cloud" href="/deploy/cloud-providers">
    Enterprise cloud deployments
  </Card>
</CardGroup>
