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.
README
MCP Template
Production-ready Model Context Protocol server template in TypeScript ā SOLID architecture, dynamic tool registration, dual transport (stdio + HTTP), and pluggable authentication.
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.tsand 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 ā
stdiofor 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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
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.