create-server
Create a new MCP (Model Context Protocol) server project
Installation
npx @agentailor/create-mcp-serverAsk AI about create-server
Powered by Claude Β· Grounded in docs
I know everything about create-server. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
@agentailor/create-mcp-server
Scaffold production-ready MCP servers in seconds.
Quick Start
Interactive mode (guided prompts):
npx @agentailor/create-mcp-server
CLI mode (all options via arguments):
npx @agentailor/create-mcp-server --name=my-server
CLI Options
| Option | Short | Default | Description |
|---|---|---|---|
--name | -n | β | Project name (required in CLI mode) |
--package-manager | -p | npm | Package manager: npm, pnpm, yarn |
--framework | -f | sdk | Framework: sdk, fastmcp |
--stdio | β | false | Use stdio transport (for local clients) |
--template | -t | stateless | Server mode: stateless, stateful (HTTP only) |
--oauth | β | false | Enable OAuth (sdk+stateful only, incompatible with --stdio) |
--no-git | β | false | Skip git initialization |
--help | -h | β | Show help |
--version | -V | β | Show version |
Examples:
# Minimal - uses all defaults (HTTP streamable)
npx @agentailor/create-mcp-server --name=my-server
# stdio server (for local clients)
npx @agentailor/create-mcp-server --name=my-server --stdio
# stdio with FastMCP
npx @agentailor/create-mcp-server --name=my-server --stdio --framework=fastmcp
# Full HTTP options
npx @agentailor/create-mcp-server \
--name=my-auth-server \
--package-manager=pnpm \
--framework=sdk \
--template=stateful \
--oauth
# Short flags
npx @agentailor/create-mcp-server -n my-server -p yarn -f fastmcp
Features
- Two frameworks β Official MCP SDK or FastMCP
- Two transport types β HTTP (streamable) or stdio (for local cllients)
- Two HTTP server modes β stateless or stateful with session management
- Optional OAuth β OIDC-compliant authentication (SDK HTTP only) (setup guide)
- Package manager choice β npm, pnpm, or yarn
- TypeScript ready β ready to customize
- Docker ready β production Dockerfile included (HTTP transport)
- MCP Inspector β built-in debugging with
npm run inspect
Frameworks
| Framework | Description |
|---|---|
| Official MCP SDK (default) | Full control with Express.js, supports OAuth |
| FastMCP | Simpler API with less boilerplate |
FastMCP
FastMCP is a TypeScript framework built on top of the official MCP SDK that provides a simpler, more intuitive API for building MCP servers.
import { FastMCP } from "fastmcp";
import { z } from "zod";
const server = new FastMCP({ name: "My Server", version: "1.0.0" });
server.addTool({
name: "add",
description: "Add two numbers",
parameters: z.object({ a: z.number(), b: z.number() }),
execute: async ({ a, b }) => String(a + b),
});
server.start({ transportType: "httpStream", httpStream: { port: 3000 } });
Learn more: FastMCP Documentation
Transport Types
| Feature | HTTP (Streamable HTTP) | stdio |
|---|---|---|
| Use case | Remote access, cloud deployment | Local clients (Claude Desktop) |
| Protocol | HTTP/SSE | stdin/stdout |
| Session management | β (stateful mode) | β |
| OAuth support | β (SDK stateful) | β |
| Docker deployment | β | β |
| Port configuration | β | β |
HTTP: Deploy as an HTTP server accessible remotely. Choose stateless or stateful mode.
stdio: Run as a local process. Communicates over stdin/stdout. Ideal for local clients. No HTTP server, no port, no Dockerfile generated.
Server Modes (HTTP only)
| Feature | Stateless (default) | Stateful |
|---|---|---|
| Session management | β | β |
| SSE support | β | β |
| OAuth option (SDK only) | β | β |
| Endpoints | POST /mcp | POST, GET, DELETE /mcp |
Stateless: Simple HTTP server β each request creates a new transport instance.
Stateful: Session-based server with transport reuse, Server-Sent Events for real-time updates, and optional OAuth authentication (SDK only).
Generated Project
my-mcp-server/
βββ src/
β βββ server.ts # MCP server (tools, prompts, resources)
β βββ index.ts # Express app and transport setup
β βββ auth.ts # OAuth middleware (if enabled)
βββ Dockerfile # Production-ready Docker build
βββ package.json
βββ tsconfig.json
βββ .gitignore
βββ .env.example
βββ README.md
Scripts:
npm run devβ build and start the servernpm run inspectβ open MCP Inspector (update URL inpackage.jsonif needed)
Learning Resources
| Guide | Description |
|---|---|
| Create Your First MCP Server in 5 Minutes | Build your first production-ready MCP server. A complete beginner guide to scaffolding a Fetch MCP server with TypeScript. |
| Securing MCP Servers with Keycloak | Learn how to secure your MCP servers with OAuth authentication using Keycloak. |
| Getting Started with FastMCP | Build MCP servers faster with FastMCP β the TypeScript framework inspired by Python's most popular MCP library. |
| OAuth for MCP Clients (Next.js + LangGraph.js) | Implement OAuth authentication in your MCP client using Next.js and the MCP SDK. |
Need help building MCP servers or agent infrastructure?
I help teams design and ship production-ready AI agent systems (MCP, LangGraph, RAG, memory, performance).
If youβre building something serious on top of this:
Happy to jump on a short call.
What is MCP?
The Model Context Protocol (MCP) is an open protocol that enables AI assistants to interact with external tools, data sources, and services.
Built by Agentailor
Built by Agentailor β your launchpad for production-ready MCP servers and scalable AI agents. We provide the tools, templates, and expertise to ship AI-powered applications faster.
