Skip to main content
Glama
currentspace

Bootstrap MCP Server

by currentspace

Bootstrap MCP Server

A minimal MCP (Model Context Protocol) server template with hot reload support for development.

Features

  • Hot Reload Proxy: Maintains connection with Claude while allowing server restarts

  • Common Tool Patterns: Example implementations of typical MCP tools

  • TypeScript Support: Full TypeScript with strict type checking

  • Fast Build System: Uses esbuild for quick compilation

  • Development Ready: Configured with ESLint and Prettier

Related MCP server: TypeScript MCP Server Boilerplate

Quick Start

  1. Install dependencies:

    pnpm install
  2. Build the project:

    pnpm run build
  3. Start the MCP server:

    ./start_mcp.sh
  4. To reload the server during development:

    ./reload_mcp.sh

Project Structure

bootstrap_mcp/
├── src/
│   ├── server.ts    # Main MCP server implementation
│   └── proxy.ts     # Hot reload proxy
├── dist/            # Compiled JavaScript output
├── build.mjs        # Build configuration
├── tsconfig.json    # TypeScript configuration
├── package.json     # Project dependencies
├── start_mcp.sh     # Start script with proxy
└── reload_mcp.sh    # Reload script for development

Available Tools

The bootstrap includes three example tools:

  1. hello_world: Simple greeting tool

  2. echo: Echo back messages

  3. get_time: Get current timestamp

Development Workflow

  1. Make changes to src/server.ts

  2. Run ./reload_mcp.sh to rebuild and restart

  3. The proxy maintains the Claude connection during restart

  4. Check /tmp/bootstrap-mcp-debug.log for debugging

Adding New Tools

  1. Add tool definition to TOOLS array in server.ts

  2. Implement handler method in BootstrapMCPServer class

  3. Add case in CallToolRequestSchema handler

  4. Reload the server

Scripts

  • pnpm run dev: Development mode with tsx watch

  • pnpm run build: Build TypeScript to JavaScript

  • pnpm run typecheck: Type checking only

  • pnpm run lint: Run ESLint

  • pnpm run format: Format code with Prettier

Requirements

  • Node.js v24+

  • pnpm package manager

Install Server
F
license - not found
C
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    A hot-reload development tool that enables real-time development of MCP (Model Context Protocol) servers by automatically reloading tools as they're modified without requiring manual restarts.
    Last updated
    32
    9
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    A template project for quickly building Model Context Protocol (MCP) servers using TypeScript and the official SDK. It includes pre-configured examples for tools and resources to help developers jumpstart their custom MCP server development.
    Last updated
    94
  • A
    license
    -
    quality
    C
    maintenance
    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.
    Last updated
    16
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    A Model Context Protocol (MCP) server template built with mcp-framework, providing a foundation for creating custom tools and publishing npm packages.
    Last updated

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/currentspace/bootstrap_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server