MCP Template

MCP Template

A production-ready Model Context Protocol server template in TypeScript that enables building MCP servers with dynamic tool registration, dual transport (stdio + HTTP), and pluggable authentication.

Category
Visit Server

README

MCP Template

Production-ready Model Context Protocol server template in TypeScript — SOLID architecture, dynamic tool registration, dual transport (stdio + HTTP), and pluggable authentication.

CI TypeScript License: MIT

Clone it, drop a file in src/tools/, and you have a new tool. No registry to edit, no boilerplate to wire.


Highlights

  • šŸ”Œ Drop-in tools — create src/tools/<name>.tool.ts and it's auto-discovered and registered at startup.
  • 🧱 SOLID by design — clear seams between config, transport, registry, auth, and tools; dependencies injected, never reached for globally.
  • 🚦 Two transports — stdio for local clients (Claude Desktop, Claude Code) and Streamable HTTP for remote deployments, from the same code.
  • šŸ” Auth in both directions — protect the server with an API key and consume external APIs with a key, both toggled by env.
  • āœ… Quality baked in — strict TypeScript, Zod validation, structured logging (pino), Vitest, ESLint + Prettier, GitHub Actions, Docker.

Quick start

npm install
cp .env.example .env

npm run dev            # stdio transport, hot reload
# or
TRANSPORT=http npm run dev

Build and run for production:

npm run build
npm start

Creating a tool

This is the whole workflow. Create a file ending in .tool.ts under src/tools/:

// src/tools/greet.tool.ts
import { z } from "zod";
import { defineTool } from "../core/tool.js";

export default defineTool({
  name: "greet",
  description: "Greets a person by name.",
  inputSchema: {
    name: z.string().min(1).describe("Who to greet"),
  },
  handler: ({ name }, { logger }) => {
    logger.debug({ name }, "greeting");
    return { content: [{ type: "text", text: `Hello, ${name}!` }] };
  },
});

Restart the server — greet is live. The args are fully typed from inputSchema, and the second argument is the injected ToolContext (config, logger, httpClient).

Need an external API? Use the injected client instead of fetch:

const data = await httpClient.get(`/resources/${id}`);

The bundled get-current-weather.tool.ts and get-forecast.tool.ts are working references: they consult the free Open-Meteo API (no key needed) through the injected client and a dedicated WeatherService.

Configuration

All config is validated at startup in src/config/env.ts. See .env.example for every supported variable and its defaults.

Authentication

Protect the server (inbound). Set REQUIRE_AUTH=true and MCP_API_KEY=.... HTTP clients then authenticate with Authorization: Bearer <key> or x-api-key: <key>. The check is a constant-time comparison and lives behind the AuthStrategy interface — add JWT/OAuth by writing a new strategy, no transport changes.

Consume an external API (outbound). Set EXTERNAL_API_BASE_URL / EXTERNAL_API_KEY. The shared HttpClient injects the key, applies timeouts and retries, and is handed to every tool via the context.

Using with Claude Desktop

Add to claude_desktop_config.json (stdio):

{
  "mcpServers": {
    "mcp-template": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-template/dist/index.js"]
    }
  }
}

Architecture

src/
ā”œā”€ā”€ index.ts            Composition root: load config → pick transport
ā”œā”€ā”€ server.ts           Builds the McpServer and runs the registry
ā”œā”€ā”€ config/env.ts       Zod-validated environment (single source of truth)
ā”œā”€ā”€ core/
│   ā”œā”€ā”€ tool.ts         ToolDefinition contract + defineTool() helper
│   ā”œā”€ā”€ tool-registry.ts  Dynamic discovery & registration of *.tool.ts
│   ā”œā”€ā”€ tool-context.ts   Dependency-injection container for handlers
│   └── logger.ts       Structured logging (to stderr, stdio-safe)
ā”œā”€ā”€ transports/         stdio + Streamable HTTP (with auth middleware)
ā”œā”€ā”€ auth/               AuthStrategy interface + API-key implementation
ā”œā”€ā”€ clients/            Shared HTTP client for outbound API calls
ā”œā”€ā”€ services/           Domain logic (e.g. WeatherService) used by tools
ā”œā”€ā”€ tools/              šŸ‘ˆ your tools — one file each, auto-registered
└── utils/errors.ts     Typed errors

How SOLID shows up here:

  • Single responsibility — one tool per file; registry, transport, config, and auth are each isolated.
  • Open/closed — add a tool or an auth strategy by adding a file; nothing existing changes.
  • Liskov — every tool is interchangeable behind ToolDefinition.
  • Interface segregation — small, focused contracts (ToolDefinition, AuthStrategy).
  • Dependency inversion — handlers depend on the injected ToolContext, never on globals.

Scripts

Script Purpose
npm run dev Run with hot reload (tsx)
npm run build Compile to dist/
npm start Run the compiled server
npm run typecheck Type-check without emitting
npm run lint ESLint
npm run format Prettier (write)
npm test Run the test suite (Vitest)

Docker

docker build -t mcp-template .
docker run -p 3000:3000 -e REQUIRE_AUTH=true -e MCP_API_KEY=secret mcp-template

License

MIT Ā© Vitor Kaez

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured