# 安装 com.pulsemcp/vercel

- 类型: MCP 工具
- 说明: MCP server for Vercel — manage deployments and view build and runtime application logs.
- 仓库: https://github.com/pulsemcp/mcp-servers

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "com.pulsemcp/vercel" MCP 服务：
执行：claude mcp add 'com-pulsemcp-vercel' -- npx -y vercel-platform-mcp-server
```

### Codex
```
请帮我安装 askskill 上的 "com.pulsemcp/vercel" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.com-pulsemcp-vercel]
command = "npx"
args = ["-y","vercel-platform-mcp-server"]
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "com.pulsemcp/vercel" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"com-pulsemcp-vercel": { "command": "npx", "args": ["-y","vercel-platform-mcp-server"] }
然后在 Cursor 设置 > MCP 中启用
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
claude mcp add --env VERCEL_TOKEN=YOUR_VALUE --env VERCEL_TEAM_ID=YOUR_VALUE --env VERCEL_TEAM_SLUG=YOUR_VALUE --env VERCEL_ENABLED_TOOLGROUPS=YOUR_VALUE --transport stdio com-pulsemcp-vercel -- npx -y vercel-platform-mcp-server
```
需要环境变量：VERCEL_TOKEN, VERCEL_TEAM_ID, VERCEL_TEAM_SLUG, VERCEL_ENABLED_TOOLGROUPS

### Codex
```bash
codex mcp add --env VERCEL_TOKEN=YOUR_VALUE --env VERCEL_TEAM_ID=YOUR_VALUE --env VERCEL_TEAM_SLUG=YOUR_VALUE --env VERCEL_ENABLED_TOOLGROUPS=YOUR_VALUE com-pulsemcp-vercel -- npx -y vercel-platform-mcp-server
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.com-pulsemcp-vercel]
command = "npx"
args = ["-y","vercel-platform-mcp-server"]

[mcp_servers.com-pulsemcp-vercel.env]
VERCEL_TOKEN = "YOUR_VALUE"
VERCEL_TEAM_ID = "YOUR_VALUE"
VERCEL_TEAM_SLUG = "YOUR_VALUE"
VERCEL_ENABLED_TOOLGROUPS = "YOUR_VALUE"
```
需要环境变量：VERCEL_TOKEN, VERCEL_TEAM_ID, VERCEL_TEAM_SLUG, VERCEL_ENABLED_TOOLGROUPS

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "com-pulsemcp-vercel": {
      "command": "npx",
      "args": [
        "-y",
        "vercel-platform-mcp-server"
      ],
      "env": {
        "VERCEL_TOKEN": "YOUR_VALUE",
        "VERCEL_TEAM_ID": "YOUR_VALUE",
        "VERCEL_TEAM_SLUG": "YOUR_VALUE",
        "VERCEL_ENABLED_TOOLGROUPS": "YOUR_VALUE"
      }
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=com-pulsemcp-vercel&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInZlcmNlbC1wbGF0Zm9ybS1tY3Atc2VydmVyIl0sImVudiI6eyJWRVJDRUxfVE9LRU4iOiJZT1VSX1ZBTFVFIiwiVkVSQ0VMX1RFQU1fSUQiOiJZT1VSX1ZBTFVFIiwiVkVSQ0VMX1RFQU1fU0xVRyI6IllPVVJfVkFMVUUiLCJWRVJDRUxfRU5BQkxFRF9UT09MR1JPVVBTIjoiWU9VUl9WQUxVRSJ9fQ
需要环境变量：VERCEL_TOKEN, VERCEL_TEAM_ID, VERCEL_TEAM_SLUG, VERCEL_ENABLED_TOOLGROUPS
