Mearman

MCP TypeScript Server Template

Community Mearman
Updated

MCP TypeScript Server Template

A template repository for building Model Context Protocol (MCP) servers with TypeScript.

Use this templateGitHub

Features

  • ๐Ÿš€ Full TypeScript support with strict mode
  • ๐Ÿงช Testing setup with Vitest and coverage reporting
  • ๐Ÿ“ฆ Automated releases with semantic-release
  • ๐Ÿ”„ CI/CD pipelines with GitHub Actions
  • ๐Ÿ—๏ธ Modular architecture for easy extension
  • ๐Ÿ“ Comprehensive documentation and examples
  • ๐Ÿ› ๏ธ Development tools: Biome for linting/formatting, Husky for Git hooks
  • ๐ŸŽฏ Pre-configured for MCP server development
  • ๐Ÿ” Built-in validation using Zod schemas
  • โšก ES modules with native Node.js support
  • ๐Ÿ“Š Code coverage reporting with c8

MCP Servers Built with This Template

Here are some MCP servers built using this template:

Wayback Machine MCP

GitHubnpm versionnpm downloads

Archive and retrieve web pages using the Internet Archive's Wayback Machine. No API keys required.

OpenAlex MCP

GitHubnpm versionnpm downloads

Access scholarly articles and research data from the OpenAlex database.

Building an MCP server? Use this template and add your server to this list!

Quick Start

Using GitHub Template

  1. Click "Use this template" button on GitHub
  2. Clone your new repository
  3. Install dependencies: yarn install
  4. Start development: yarn dev

Manual Setup

# Clone the template
git clone https://github.com/Mearman/mcp-template.git my-mcp-server
cd my-mcp-server

# Install dependencies
yarn install

# Start development
yarn dev

Project Structure

src/
โ”œโ”€โ”€ index.ts          # MCP server entry point
โ”œโ”€โ”€ tools/            # Tool implementations
โ”‚   โ”œโ”€โ”€ example.ts    # Example tool
โ”‚   โ””โ”€โ”€ *.test.ts     # Tool tests
โ”œโ”€โ”€ utils/            # Shared utilities
โ”‚   โ”œโ”€โ”€ validation.ts # Input validation helpers
โ”‚   โ””โ”€โ”€ *.test.ts     # Utility tests
โ””โ”€โ”€ types.ts          # TypeScript type definitions

# Configuration files
โ”œโ”€โ”€ .github/workflows/  # CI/CD pipelines
โ”œโ”€โ”€ .husky/            # Git hooks
โ”œโ”€โ”€ biome.json         # Linter/formatter config
โ”œโ”€โ”€ tsconfig.json      # TypeScript config
โ”œโ”€โ”€ vitest.config.ts   # Test runner config
โ””โ”€โ”€ .releaserc.json    # Semantic release config

Development

Available Commands

# Install dependencies
yarn install

# Development with hot reload
yarn dev

# Build TypeScript to JavaScript
yarn build

# Run production build
yarn start

# Run tests
yarn test

# Run tests in watch mode
yarn test:watch

# Run tests with coverage report
yarn test:ci

# Lint code
yarn lint

# Auto-fix linting issues
yarn lint:fix

# Format code
yarn format

Development Workflow

  1. Start development: yarn dev - Runs the server with hot reload
  2. Write tests: Add .test.ts files alongside your code
  3. Run tests: yarn test:watch - Keep tests running while you code
  4. Lint/format: Automatic on commit via Husky hooks

Creating Your MCP Server

1. Define Your Tools

Create tool implementations in src/tools/:

// src/tools/my-tool.ts
import { z } from 'zod';

const MyToolSchema = z.object({
  input: z.string().describe('Tool input'),
});

export async function myTool(args: unknown) {
  const { input } = MyToolSchema.parse(args);
  
  // Tool implementation
  return {
    success: true,
    result: `Processed: ${input}`,
  };
}

2. Register Tools in Server

Update src/index.ts to register your tools:

server.setRequestHandler(ListToolsRequestSchema, async () => ({
  tools: [
    {
      name: 'my_tool',
      description: 'Description of what my tool does',
      inputSchema: zodToJsonSchema(MyToolSchema),
    },
  ],
}));

server.setRequestHandler(CallToolRequestSchema, async (request) => {
  switch (request.params.name) {
    case 'my_tool':
      return await myTool(request.params.arguments);
    default:
      throw new Error(`Unknown tool: ${request.params.name}`);
  }
});

3. Configure for Claude Desktop

Add to claude_desktop_config.json:

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

Testing

Write tests for your tools in src/tools/*.test.ts:

import { describe, it, expect } from 'vitest';
import { myTool } from './my-tool';

describe('myTool', () => {
  it('should process input correctly', async () => {
    const result = await myTool({ input: 'test' });
    expect(result.success).toBe(true);
    expect(result.result).toBe('Processed: test');
  });
});

Publishing

NPM Package

  1. Update package.json with your package details:

    • name: Your package name (e.g., mcp-your-server)
    • description: Clear description of what your server does
    • keywords: Add relevant keywords for discoverability
    • author: Your name or organization
    • repository: Your GitHub repository URL
  2. Build the project:

    yarn build
    
  3. Test the build locally:

    yarn start
    
  4. Publish to npm:

    npm publish
    

Automated Releases

This template includes semantic-release for automated versioning and publishing:

  1. Follow conventional commits
  2. Push to main branch
  3. CI/CD will automatically:
    • Determine version bump
    • Update CHANGELOG.md
    • Create GitHub release
    • Publish to npm (if NPM_TOKEN secret is configured)

Note: NPM publishing is optional. If you don't want to publish to npm, simply don't add the NPM_TOKEN secret to your repository. The release process will still create GitHub releases.

Best Practices

  1. Input Validation: Always validate tool inputs using Zod schemas
  2. Error Handling: Provide clear error messages for debugging
  3. Testing: Write comprehensive tests for all tools
  4. Documentation: Document each tool's purpose and usage
  5. Type Safety: Leverage TypeScript's type system fully
  6. Modular Design: Keep tools focused on single responsibilities
  7. Async/Await: Use modern async patterns for all I/O operations
  8. Environment Variables: Use .env files for configuration (never commit secrets)

Adding CLI Support

To add CLI functionality to your MCP server (like the Wayback Machine example):

  1. Install Commander.js:

    yarn add commander chalk ora
    
  2. Create src/cli.ts:

    import { Command } from 'commander';
    import chalk from 'chalk';
    
    export function createCLI() {
      const program = new Command();
    
      program
        .name('your-tool')
        .description('Your MCP server as a CLI')
        .version('1.0.0');
    
      // Add commands here
    
      return program;
    }
    
  3. Update src/index.ts to detect CLI mode:

    async function main() {
      const isCliMode = process.stdin.isTTY || process.argv.length > 2;
    
      if (isCliMode && process.argv.length > 2) {
        const { createCLI } = await import('./cli.js');
        const program = createCLI();
        await program.parseAsync(process.argv);
      } else {
        // MCP server mode
        const transport = new StdioServerTransport();
        await server.connect(transport);
      }
    }
    
  4. Add bin entry to package.json:

    "bin": {
      "your-tool": "dist/index.js"
    }
    

License

CC BY-NC-SA 4.0

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

Contributing

Contributions are welcome! Please read our contributing guidelines and submit pull requests to our repository.

Troubleshooting

Common Issues

  1. Build errors: Ensure all dependencies are installed with yarn install
  2. Type errors: Run npx tsc --noEmit to check TypeScript types
  3. Test failures: Check test files are named *.test.ts
  4. Claude Desktop connection: Verify the path in your config is absolute

Debug Mode

To see detailed logs when running as an MCP server:

DEBUG=* node dist/index.js

Resources

MCP Server ยท Populars

MCP Server ยท New