Skip to main content
Glama
zgh2hh

MCP Test Server

by zgh2hh

MCP Test

A test repository for MCP (Model Context Protocol) functionality with TypeScript support.

Features

  • TypeScript-based MCP server implementation

  • Example configurations and usage

  • Jest-based test cases

  • Development tools setup (ts-node, ts-node-dev)

Related MCP server: Basic MCP Server

Project Structure

├── src/
│   ├── server.ts         # Main server implementation
│   └── types/           # TypeScript definitions
├── examples/
│   └── basic-server.ts  # Example usage
├── test/
│   └── server.test.ts   # Test cases
└── package.json         # Project configuration

Getting Started

  1. Clone the repository

git clone https://github.com/zgh2hh/mcp-test.git
cd mcp-test
  1. Install dependencies

npm install
  1. Build the project

npm run build
  1. Run examples

# Run the basic server example
npm run example

# Development mode with auto-reload
npm run dev
  1. Run tests

npm test

Development

  • npm run build - Compile TypeScript to JavaScript

  • npm run dev - Start development mode with auto-reload

  • npm test - Run test cases

  • npm run example - Run the example server

License

This project is licensed under the MIT License - see the LICENSE file for details.

Related MCP Connectors

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    A basic TypeScript implementation of the Model Context Protocol (MCP) server designed as a starting point for MCP development. Provides a minimal foundation for building custom MCP servers with stdio configuration for local integration with VS Code and GitHub Copilot.
    1
    -
  • F
    license
    B
    quality
    D
    maintenance
    A demonstration TypeScript MCP server that showcases basic MCP concepts with simple tools (greeting, calculator), text resources, and prompt templates for learning the Model Context Protocol.
    2
    -
  • A
    license
    B
    quality
    D
    maintenance
    A template/boilerplate project for building Model Context Protocol (MCP) servers with TypeScript. Provides a starting point with configuration examples, development tools, and debugging setup.
    2
    1
    MIT