mattwiley-8451/mcp-ping-pong
3.2
If you are the rightful owner of mcp-ping-pong 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.
The MCP Ping Pong Server is a simple server implementation using the Model Context Protocol (MCP) that provides a basic 'ping' tool, which responds with 'pong'.
Tools
1
Resources
0
Prompts
0
MCP Ping Pong Server
A simple Model Context Protocol (MCP) server that provides a ping tool which responds with "pong".
Installation
npm install
Running the Server
npm start
Or directly:
node server.js
Tools
- ping: A simple tool that responds with "pong"
Usage
The server communicates over stdio using the MCP protocol. It can be used with any MCP-compatible client.
Example - Unpackaged Local Runner
This demonstrates how to configure the MCP ping-pong server by pulling down the git repo and running the server locally.
{
"mcpServers": {
"ping-pong": {
"command": "node",
"args": [
"/path/to/repo/mcp-ping-pong/server.js"
]
}
}
}