# Does Vercel have an MCP server?

**Yes — Official.** Vercel maintains an official MCP server.

> Closed-source hosted service with an approved-client allowlist (Claude, Cursor, ChatGPT among them) — no public repo.

## Facts

- Verdict: Official (Yes)
- Access: Remote server — Hosted by the vendor — no install, connect over HTTP with OAuth or a token.
- Endpoint: `https://mcp.vercel.com`
- Category: [Cloud Platforms](https://mcpyet.com/category/cloud-platforms/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **Vendor-hosted (remote):** `https://mcp.vercel.com` — a remote server run by Vercel itself, nothing to install. Documented at <https://vercel.com/docs/agent-resources/vercel-mcp>.

## How to connect it

Hosted by the vendor — no install, connect over HTTP with OAuth or a token.

### Claude Code

```sh
claude mcp add --transport http vercel https://mcp.vercel.com
```

Add `--scope user` to make it available in every project.

### Claude Desktop

1. Open **Settings → Connectors**
2. Click **Add custom connector**
3. Paste `https://mcp.vercel.com`
4. Finish the sign-in prompt, then enable it in the chat's tools menu

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "vercel": {
      "url": "https://mcp.vercel.com"
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "vercel": {
      "type": "http",
      "url": "https://mcp.vercel.com"
    }
  }
}
```

### ChatGPT

1. Enable **Developer mode** under Settings → Apps & Connectors → Advanced
2. Choose **Create** and paste `https://mcp.vercel.com`
3. Complete sign-in, then enable the connector in a new chat

## How we know

Vercel MCP is an official remote server with OAuth at mcp.vercel.com — docs search, project and deployment management, log analysis — documented on vercel.com.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Cloud Platforms

- [Microsoft Azure](https://mcpyet.com/mcp/azure.md) — Official (Yes)
- [Kubernetes](https://mcpyet.com/mcp/kubernetes.md) — Community only (Sort of)
- [AWS](https://mcpyet.com/mcp/aws.md) — Official (Yes)
- [Cloudflare](https://mcpyet.com/mcp/cloudflare.md) — Official (Yes)
- [Redis](https://mcpyet.com/mcp/redis.md) — Official (Yes)
- [HashiCorp](https://mcpyet.com/mcp/hashicorp.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/vercel/ — data refreshed 2026-08-11
