npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mcphero/vercel

v1.3.0

Published

MCP Hero Vercel Serverless Adapter

Downloads

405

Readme

@mcphero/vercel

Vercel serverless adapter for MCPHero — deploy your actions as a stateless MCP server on Vercel.

Install

pnpm add @mcphero/core @mcphero/vercel

Usage

Vanilla Vercel Functions

// api/mcp.ts
import { mcphero } from '@mcphero/core'
import { vercel } from '@mcphero/vercel'
import { MyAction } from '../actions/my-action.js'

const { adapter, handler } = vercel()

await mcphero({ name: 'my-tools', description: 'My MCP Server', version: '1.0.0' })
  .adapter(adapter)
  .action(MyAction)
  .start()

export default { fetch: handler }

Next.js App Router

// app/api/mcp/route.ts
import { mcphero } from '@mcphero/core'
import { vercel } from '@mcphero/vercel'
import { MyAction } from '../../../actions/my-action.js'

const { adapter, GET, POST, DELETE } = vercel()

await mcphero({ name: 'my-tools', description: 'My MCP Server', version: '1.0.0' })
  .adapter(adapter)
  .action(MyAction)
  .start()

export { GET, POST, DELETE }

How It Works

  • Uses WebStandardStreamableHTTPServerTransport from the MCP SDK in stateless mode (sessionIdGenerator: undefined)
  • Each request creates a fresh McpServer + transport, registers tools, handles the request, and returns a Web Standard Response
  • Actions are registered as MCP tools using PascalCase names (same as the stdio and http adapters)
  • Logging goes to process.stderr (Vercel log drain) and MCP client notifications

Options

const { adapter, handler } = vercel({
  enableJsonResponse: true  // Return JSON instead of SSE streams
})

| Option | Type | Default | Description | |--------|------|---------|-------------| | enableJsonResponse | boolean | false | Return JSON responses instead of SSE streams |

Compound Return Pattern

Unlike other MCPHero adapters that are simple AdapterFactory functions, vercel() returns a compound object:

interface VercelAdapter {
  adapter: AdapterGenerator                      // Pass to mcphero().adapter()
  handler: (request: Request) => Promise<Response>  // The request handler
  GET: (request: Request) => Promise<Response>      // Alias for handler
  POST: (request: Request) => Promise<Response>     // Alias for handler
  DELETE: (request: Request) => Promise<Response>    // Alias for handler
}

This is because Vercel functions export request handlers rather than starting long-lived servers. The adapter property integrates with the MCPHero builder, while handler/GET/POST/DELETE are exported from your route file.

Deployment

Vercel Configuration

{
  "framework": null,
  "functions": {
    "api/mcp.ts": {
      "memory": 1024,
      "maxDuration": 60
    }
  },
  "rewrites": [
    { "source": "/mcp", "destination": "/api/mcp" }
  ]
}

CORS

CORS is not handled by the adapter. Use Next.js middleware or Vercel headers configuration:

{
  "headers": [
    {
      "source": "/api/mcp",
      "headers": [
        { "key": "Access-Control-Allow-Origin", "value": "*" },
        { "key": "Access-Control-Allow-Methods", "value": "GET, POST, DELETE, OPTIONS" },
        { "key": "Access-Control-Allow-Headers", "value": "Content-Type, Mcp-Session-Id" }
      ]
    }
  ]
}

See Also