stateless-mcp-starter
An Express + TypeScript starter for building stateless MCP servers with explicit, typed application state, featuring a shopping-cart domain example and support for multiple state store adapters.
README
Stateless MCP Starter
An Express + TypeScript starter for building stateless MCP servers with explicit, typed application state.
This repo demonstrates a simple production-oriented pattern:
- Keep MCP protocol handling stateless.
- Store application state behind a
StateStore<TState>. - Return opaque handles like
cart_...,booking_..., ordraft_...from tools. - Require later tool calls to pass those handles back as normal arguments.
The included shopping-cart tools are just an example domain. The important idea is not ecommerce; it is the explicit state-handle pattern. The same shape works for bookings, support tickets, onboarding flows, insurance quotes, approvals, drafts, and other multi-turn workflows.
Why This Exists
Remote MCP servers should be easy to scale horizontally. A later request should not need to find the same process, protocol session, or in-memory object that handled the first request.
Instead, the model receives an application handle from one tool call:
{
"cart_id": "cart_abc123"
}
Then it passes that handle into the next tool call:
{
"cart_id": "cart_abc123",
"sku": "ceramic-mug",
"quantity": 2
}
Any server instance can handle either request because the state lives in the configured StateStore, not in MCP protocol/session state.
Quickstart
Generate a new project:
pnpm dlx create-stateless-mcp my-server
cd my-server
pnpm install
pnpm dev
The server starts on http://127.0.0.1:3000 by default.
curl http://127.0.0.1:3000/health
Expected response:
{
"status": "ok",
"service": "stateless-mcp-starter"
}
You can also run this checkout directly:
pnpm install
pnpm dev
Generator
This package provides a create-stateless-mcp CLI:
pnpm dlx create-stateless-mcp my-server
For local development from this repo:
node bin/create-stateless-mcp.js my-server --yes
Options:
node bin/create-stateless-mcp.js my-server \
--state-adapter memory \
--auth-mode dev \
--example-domain shopping-cart \
--yes
Supported choices:
--state-adapter memory|dynamodb|postgres--auth-mode dev|bearer--example-domain shopping-cart|minimal
Use shopping-cart when you want a concrete working example. Use minimal when you want the MCP server scaffold without example domain code.
Included MCP Tools
The shopping-cart example exposes these tools over /mcp:
list_products: returns available product SKUs.create_cart: creates a cart and returnscart_id.add_cart_item: adds an item usingcart_id,sku, andquantity.get_cart: fetches the cart usingcart_id.
The tool names and cart types are intentionally replaceable. They exist to make the handle flow obvious.
State Model
StateStore<TState> is the application state boundary. Records include:
- handle
- type
- tenant/user scope
- status
- version
- timestamps
- TTL
- typed value
Handles are opaque identifiers, not authorization. Every state read or write also receives tenant/user scope.
Included adapters:
InMemoryStateStorefor local development and tests.DynamoStateStorefor shared production-style state.PostgresStateStorefor shared production-style state in Postgres.
Memory mode is zero setup:
STATE_ADAPTER=memory
DynamoDB mode:
STATE_ADAPTER=dynamodb
DYNAMODB_TABLE_NAME=stateless-mcp-state
AWS_REGION=us-east-1
Postgres mode:
STATE_ADAPTER=postgres
POSTGRES_CONNECTION_STRING=postgres://postgres:postgres@127.0.0.1:5432/stateless_mcp
POSTGRES_TABLE_NAME=mcp_state
See docs/adapters.md for adapter details and the Postgres schema.
Auth And Context
Local development defaults to permissive dev auth:
AUTH_MODE=dev
Production should use the bearer-token stub or replace it with your own auth layer:
NODE_ENV=production
AUTH_MODE=bearer
AUTH_BEARER_TOKEN=replace-with-a-real-secret
Every MCP request gets a typed context with requestId, tenantId, userId, and scopes. In dev mode, x-tenant-id, x-user-id, and x-user-scopes headers are optional. In bearer mode, tenant/user headers are required and state operations remain scoped by both values.
MCP SDK Compatibility
This starter uses the production-ready v1 @modelcontextprotocol/sdk package and Streamable HTTP transport. The HTTP transport is configured without server-side session IDs, so application continuity comes from explicit handles and the configured StateStore.
Protocol-specific wiring is isolated in src/http/app.ts and src/mcp/createServer.ts, so future SDK changes should not require rewriting your state model, tools, or auth boundary.
Project Structure
src/
auth/ request auth and typed request context
cart/ example shopping-cart domain
http/ Express app, /health, and /mcp route
mcp/ MCP server and tool registration
state/ StateStore interface and adapters
test/ focused unit and flow tests
docs/ deployment, adapters, and explicit-handle notes
bin/ create-stateless-mcp generator
Scripts
pnpm dev
pnpm test
pnpm build
What This Is
- A starter for stateless remote MCP servers.
- A concrete example of explicit multi-turn application state.
- A TypeScript/Express scaffold with tests, Docker support, and a generator.
- A place to swap in your own domain tools and state types.
What This Is Not
- A complete auth solution.
- A hosted deployment platform.
- A framework that hides MCP concepts from you.
- An ecommerce product. The cart domain is only an example.
Deployment
See docs/deployment.md for Docker, required environment variables, and no-sticky-session guidance.
Future Milestones
- Redis
StateStoreadapter. - JWT auth hardening.
- More deployment examples.
- More generated templates.
Release
This project is prepared for npm publishing as create-stateless-mcp, but no publish or release action should happen without explicit approval. See RELEASE_CHECKLIST.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.