AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP unreviewed Apache-2.0 Self-run

Mcp On Vercel

mcp-sdiehl-mcp-on-vercel · by sdiehl

Boilerplate for running Remote MCP Servers on FaaS Providers

— No reviews yet
0 installs
43 views
0.0% view→install

Install

$ agentstack add mcp-sdiehl-mcp-on-vercel

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • • Prompt-injection patterns
  • • Secret / credential exfiltration
  • • Dangerous shell & filesystem operations
  • • Untrusted network calls
  • • Known-malicious package signatures
  • high Pipes remote content directly into a shell (remote code execution).

What it can access

  • ● Network access Used
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Reliability & compatibility

— Not yet reviewed
0 installs to date
— no reviews yet
○ stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mcp On Vercel? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Remote Serverless MCP Servers

You want to run a remote MCP server, but you don't want to host or pay for a server. Well you're in luck, you can use the Vercel Hobby Tier to run it for free.

This is an adapter library that provides a stateless Python MCP server that runs on Vercel Functions, enabling serverless deployment of MCP tools as edge functions with self-hosting installers.

Prerequisites

Fork this repo and connect it to your Vercel account. Once it's deployed get the URL (your-domain.vercel.app).

If you don't have uv installed, install it from astral:

curl -LsSf https://astral.sh/uv/install.sh | sh

Then, install the MCP server using the self-hosted installer:

uv run https://your-domain.vercel.app/install.py

And we're done. This automatically:

  • Configures Claude Desktop and Cursor to use the MCP server
  • Uses the bridge script served directly from the server
  • No downloads or local files needed

Go to your client and type something stupid like "Use MCP to get the server time" and it should use the remote server.

Authentication (Optional)

The server supports optional API key authentication to restrict access. To enable authentication:

  1. Server-side: Set the MCP_API_KEY environment variable in your Vercel deployment
  2. Client-side: The installer will prompt for an API key during setup

You can set the API key in your vercel.json file or in the Vercel dashboard:

{
  "env": {
    "MCP_API_KEY": "your-secret-key-here"
  }
}

When an API key is configured on the server, all MCP requests must include the key in the X-API-Key header. The bridge script automatically handles this when the MCP_API_KEY environment variable is set in the client configuration.

Local Development

uv sync
vercel dev

Deploy

You just push to Github and it should just work.

Or manually deploy:

vercel --prod

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.