test-mcp-server

peicodes/test-mcp-server

3.2

If you are the rightful owner of test-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

A TypeScript-based MCP server utilizing SSE for real-time communication.

Tools
1
Resources
0
Prompts
0

Test MCP Server

A TypeScript-based MCP (Model Context Protocol) server using SSE (Server-Sent Events) transport.

Features

  • Runs on localhost (port 3000)
  • SSE-based transport for real-time communication
  • Single tool: get_test_response

Setup

Install dependencies:

npm install

Usage

Build and run the server:

npm run dev

Or build and run separately:

npm run build
npm start

The server will be available at:

  • Main endpoint: http://localhost:3000
  • SSE endpoint: http://localhost:3000/sse

Tool: get_test_response

Returns a test response message.

Parameters:

  • message (optional): A custom message to include in the response

Example response:

Test Response: Hello from test MCP server!