MCP Starter Kit

MCP Starter Kit

Production-ready TypeScript MCP server template — 4 tools, Zod validation, 19 tests, Claude Desktop + Code integration

Category
Visit Server

README

MCP Server Starter Kit

A production-ready TypeScript template for building Model Context Protocol (MCP) servers. Skip the boilerplate and ship working tools to Claude and other MCP clients in minutes.

What's included

  • Working MCP server using the official @modelcontextprotocol/sdk
  • 3 example tools you can use as-is or adapt:
    • fetch_url — fetch web content with configurable limits and domain blocking
    • read_file / list_directory — safe filesystem access with path traversal protection
    • transform_data — convert between JSON, CSV, TSV, Markdown table, and plain text
  • TypeScript throughout — strict mode, typed inputs/outputs, Zod validation
  • Error handling patterns — every tool returns a typed ToolResult<T> with ok/error discrimination
  • Environment-based config — all limits and paths configurable via .env
  • Structured logging — stderr-only logger (MCP protocol uses stdout)
  • Test suite — 19 tests with Vitest covering all three tools
  • Build scriptsnpm run build, npm run dev, npm test, npm run typecheck

Requirements

  • Node.js 18 or higher
  • npm 9 or higher

Quick start

# 1. Install dependencies
npm install

# 2. Configure environment
cp .env.example .env
# Edit .env — at minimum, set FILE_READER_ROOT to a safe directory

# 3. Build
npm run build

# 4. Run
npm start

Development mode

npm run dev

Uses tsx for live reload — no build step required during development.

Connect to Claude Desktop

Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "my-server": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-starter-kit/dist/index.js"],
      "env": {
        "FILE_READER_ROOT": "/path/to/allowed/directory",
        "LOG_LEVEL": "info"
      }
    }
  }
}

Restart Claude Desktop. Your tools will appear in the tool picker.

Connect to Claude Code

Add to .claude/settings.json:

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

Tools reference

fetch_url

Fetches the text content of a URL.

Parameter Type Required Description
url string yes HTTP or HTTPS URL to fetch
headers object no Additional request headers
timeout_ms number no Request timeout (100–30000ms, default from env)

Returns the response body, status code, content type, and a truncated flag if the response exceeded FETCH_MAX_BYTES.

read_file

Reads a file within the configured FILE_READER_ROOT.

Parameter Type Required Description
path string yes Relative path from root
encoding utf8 or base64 no Encoding (default: utf8)
max_bytes number no Max bytes to read (default: 1MB)

Path traversal (../) is blocked at the resolver level.

list_directory

Lists files and directories within the configured root.

Parameter Type Required Description
path string no Relative directory path (default: .)
recursive boolean no List nested files (default: false)

transform_data

Converts data between formats.

Parameter Type Required Description
input string yes Raw input data
from_format json|csv|tsv|text yes Input format
to_format json|csv|tsv|markdown_table|text_summary yes Output format
options.pretty boolean no Pretty-print JSON (default: true)
options.include_header boolean no Include CSV/TSV header row (default: true)
options.delimiter string no Custom delimiter for CSV/TSV parsing

Configuration

All configuration is via environment variables. See .env.example for the full list.

Variable Default Description
SERVER_NAME mcp-starter-kit Server identity reported to clients
SERVER_VERSION 1.0.0 Server version
FETCH_MAX_BYTES 1048576 Max response size for web fetcher (bytes)
FETCH_TIMEOUT_MS 10000 Default fetch timeout (ms)
FETCH_BLOCKED_DOMAINS (empty) Comma-separated blocked hostnames
FILE_READER_ROOT ./workspace Root directory for file access
TRANSFORMER_MAX_INPUT 50000 Max input characters for transformer
LOG_LEVEL info Logging level (debug/info/warn/error)

Adding your own tools

  1. Create src/tools/my-tool.ts — export an async function that returns ToolResult<YourType>
  2. Add input/output types to src/types.ts using Zod schemas
  3. Register the tool in src/index.ts with server.tool(name, description, schema, handler)
  4. Write tests in src/tools/my-tool.test.ts

The pattern used by all three example tools:

export async function myTool(input: MyToolInput): Promise<ToolResult<MyToolOutput>> {
  // validate, execute, return { ok: true, data: ... } or { ok: false, error: "...", code: "..." }
}

Project structure

mcp-starter-kit/
├── src/
│   ├── index.ts          # Server entry point — tool registration
│   ├── config.ts         # Environment variable loading
│   ├── logger.ts         # Stderr logger
│   ├── types.ts          # Shared types and Zod schemas
│   └── tools/
│       ├── web-fetcher.ts
│       ├── web-fetcher.test.ts (add your own)
│       ├── file-reader.ts
│       ├── file-reader.test.ts
│       ├── data-transformer.ts
│       └── data-transformer.test.ts
├── dist/                 # Compiled output (after npm run build)
├── .env.example
├── package.json
├── tsconfig.json
└── vitest.config.ts

Running tests

npm test           # Run once
npm run test:watch # Watch mode

License

MIT

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