โœจ New โ€” Zero competition on Gumroad

Build MCP Servers
in Minutes

5 production-ready TypeScript templates for the Model Context Protocol. Stop reading docs, start shipping.

Get MCP Kit โ€” $49 โ†’ View Templates โ†“
5
Server Templates
20+
MCP Tools
100%
TypeScript
0
Dependencies*

Pick Your Template

Each template is a complete, runnable MCP server. Copy, customize, ship.

โšก

Starter

The minimal MCP server. Two example tools, clean structure, fully commented. Your starting point.

2 tools greet calculate
๐Ÿ“

File Manager

Read, write, search, and list files. Path sandboxing and security built in. Perfect for code assistants.

5 tools read_file write_file search
๐Ÿ—„๏ธ

Database (SQLite)

Query databases with natural language. Schema inspection, read/write separation, parameterized queries.

4 tools query execute schema
๐ŸŒ

API Gateway

Wrap any REST API as MCP tools. Dynamic registration, auth handling, multi-API support.

4 tools register call test
๐Ÿ”

Web Scraper

Fetch pages, extract text, get metadata, pull links. No browser dependencies โ€” pure Node.js fetch.

4 tools fetch metadata links

See the Code

Clean, documented TypeScript. Every line explained.

templates/starter/src/index.ts
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { z } from "zod";

// Create your MCP server
const server = new McpServer({
  name: "my-server",
  version: "1.0.0",
});

// Register a tool โ€” this is what the AI sees and can call
server.tool(
  "greet",                          // tool name
  "Generate a greeting",             // description for AI
  {
    name: z.string(),                 // input schema
    language: z.enum(["en","es","fr"])
      .default("en"),
  },
  async ({ name, language }) => {
    return {
      content: [{ type: "text", text: `Hello, ${name}!` }]
    };
  }
);

// Start the server
const transport = new StdioServerTransport();
await server.connect(transport);

Why MCP Kit?

Built for developers who ship, not read docs.

๐Ÿš€

Copy-Paste Ready

npm install && npm start. Each template runs out of the box.

๐Ÿ”’

Security First

Path sandboxing, query validation, auth handling. Production patterns baked in.

๐Ÿ“˜

Fully Documented

Every file has inline comments explaining the MCP protocol. Learn while you build.

๐ŸŽฏ

Type-Safe

Full TypeScript with Zod validation. Catch errors before your users do.

โšก

Zero Config

Works with Claude Desktop, Cursor, Windsurf, and any MCP client. Stdio transport by default.

๐Ÿ”„

MIT License

Use personally for free. Commercial license available for teams and products.

Ship Your MCP Server Today

5 templates, 20+ tools, unlimited projects.

$49 one-time purchase

Get MCP Kit on Gumroad โ†’