Vercel MCP Server for Microsoft Copilot Studio
Provides tools for managing Vercel projects, deployments, build logs, domains, and environment variables.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Vercel MCP Server for Microsoft Copilot StudioShow me the build logs for the latest failed deployment"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Vercel MCP Server for Microsoft Copilot Studio
A zero-dependency Model Context Protocol server for the Vercel platform, built specifically to work with Microsoft Copilot Studio (which requires the Streamable HTTP transport and supports API-key authentication).
Why this exists: Vercel's official MCP server (
https://mcp.vercel.com) uses OAuth with dynamic client registration, which Copilot Studio's MCP onboarding cannot complete. This server bridges the gap: the API key you enter in Copilot Studio is your Vercel access token, forwarded per-request to the Vercel REST API. The server itself is stateless and stores nothing.
Tools
Tool | Description |
| Verify the connection / identify the token owner |
| List Vercel teams |
| List projects (id, framework, production URL) |
| Project details incl. git repo link |
| Recent deployments, filter by project/state/target |
| Deployment details incl. error info |
| Build log output — great for diagnosing failed builds |
| Cancel a building/queued deployment |
| Promote (roll forward/back) a deployment to production |
| Custom domains + verification status |
| Env vars (secret values hidden) |
| Create/upsert an env var |
| Delete an env var |
Deploy
Option A — Deploy to Vercel (recommended, ~1 minute)
Or with the CLI:
vercel deploy --prodYour MCP endpoint will be: https://<your-deployment>.vercel.app/mcp
Option B — Self-host (any Node 18+ host)
node server.js # listens on PORT (default 3000), endpoint /mcpNo npm install needed — there are no dependencies.
Connect from Copilot Studio
Create a Vercel access token at https://vercel.com/account/settings/tokens (scope it to the team/projects you want the agent to manage).
In Copilot Studio, open your agent → Tools → Add a tool → Model Context Protocol (MCP).
Fill in:
Name:
VercelDescription:
Manage Vercel projects, deployments, build logs, domains and environment variables.Server URL:
https://<your-deployment>.vercel.app/mcpAuthentication: API key
Header name / location:
x-api-key(header)Value: your Vercel access token
Click Add → Copilot Studio performs the MCP handshake and lists all 13 tools.
Create connection, enable it in the connection manager, then test in the Preview pane, e.g.:
"List my Vercel projects"
"Show me the build logs for the latest failed deployment of my-site"
"Add an env var API_URL=https://api.example.com to my-site for preview only"
The server also accepts the token via Authorization: Bearer <token> or x-vercel-token headers, and falls back to a VERCEL_TOKEN environment variable for single-tenant self-hosted deployments (in that case choose No authentication in Copilot Studio — only do this if the server URL itself is protected/private).
Architecture
Copilot Studio ──POST /mcp (JSON-RPC, Streamable HTTP)──▶ this server ──REST──▶ api.vercel.com
x-api-key: <vercel access token> (stateless, no storage)Transport: MCP Streamable HTTP, stateless mode (protocol versions 2024-11-05 → 2025-06-18). No sessions, no SSE required — ideal for serverless.
Auth: pass-through. The server never stores tokens; every request carries the caller's own Vercel token.
Zero dependencies: plain Node.js ≥18. Nothing to install, no supply chain.
Development & tests
node test/mcp.test.jsThe test suite boots the real HTTP server, mocks api.vercel.com, and drives the full MCP handshake (initialize → initialized → tools/list → tools/call), plus error paths (bad token, unknown tool/method, malformed JSON, batching).
Security notes
Use a scoped Vercel token, ideally on a dedicated team with least privilege.
Secret env var values are never returned by
list_env_vars.Deploy under HTTPS only (automatic on Vercel). Copilot Studio requires HTTPS.
Consider Vercel Deployment Protection bypass headers if you protect the deployment.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Debug, build, and manage Power Automate cloud flows with AI agents
AI-powered design and management for Webflow Sites
Create and manage AI agents that collaborate and solve problems through natural language interacti…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ogradyliam5/vercel-mcp-copilot-studio'
If you have feedback or need assistance with the MCP directory API, please join our Discord server