---
title: "Vercel MCP server – install in Claude Desktop and Cursor"
summary: "Vercel's official MCP server that lets an agent inspect deployments, read logs, and reason about projects on your Vercel account."
canonical: https://unlocksaas.com/mcp-tools/vercel
updated: 2026-05-22
publisher: "Unlock SaaS"
author: "Maryan"
license: All rights reserved. Quotation with attribution permitted.
---

# Vercel MCP server

> Vercel's official MCP server that lets an agent inspect deployments, read logs, and reason about projects on your Vercel account.

- Vendor: Vercel
- Vendor URL: https://vercel.com/docs/mcp
- Category: Indie SaaS infrastructure
- Distribution: Remote (hosted URL)
- Install handle: https://mcp.vercel.com
- Official: yes
- Access: Authenticated; uses your Vercel account permissions.

## TL;DR

Vercel's official MCP server gives an authenticated agent read access to the deployments, logs, projects, and environment surface of your Vercel account. The right server when you want Claude or Cursor to investigate a failing deploy, summarize recent activity, or trace an error in a function log without you tabbing back to the dashboard.

## Why an indie SaaS founder cares

If your indie SaaS is hosted on Vercel – and the audience this site is built for usually is – this server makes the assistant a competent operator inside your Vercel project. Ask Claude why a deploy failed, what the last successful preview was, or what changed between two builds, and get an answer grounded in your real account state.

## What an agent can do with it

- **Inspect deployments** – Read deployment metadata, status, build duration, and the URL of any deploy on your account.
- **Read function logs** – Stream or read recent function and edge runtime logs to diagnose production issues.
- **Read project configuration** – Pull project settings, domains, and environment variable names that the agent has permission to see.

## Install in Claude Desktop

```json
{
  "mcpServers": {
    "vercel": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.vercel.com"]
    }
  }
}
```

## Install in Cursor

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

## FAQ

**Will the MCP server expose my Vercel secrets to the agent?**

The server respects your account's permission model. Treat the agent as if it were a teammate with your account's read access and review the docs for the exact scope.

**Can the agent trigger deploys?**

The server is read-heavy by design. For write actions, prefer running the Vercel CLI in a controlled context.

Last verified: 2026-05-22.

---

Canonical URL: https://unlocksaas.com/mcp-tools/vercel
Publisher: Unlock SaaS (https://unlocksaas.com)
Contact: maryan@unlocksaas.com