A TypeScript-based MCP (Model Context Protocol) server using SSE (Server-Sent Events) transport.
- Runs on localhost (port 3000)
- SSE-based transport for real-time communication
- Single tool:
get_test_response
Install dependencies:
npm installBuild and run the server:
npm run devOr build and run separately:
npm run build
npm startThe server will be available at:
- Main endpoint:
http://localhost:3000 - SSE endpoint:
http://localhost:3000/sse
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!