- Home
- MCP servers
- Dummy
Dummy
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You have a lightweight MCP server built with the FastMCP framework that communicates over Server-Sent Events (SSE). It exposes two simple tools, dummy and echo, and runs in a Docker environment for easy local testing and integration with MCP clients.
How to use
To interact with this MCP server, connect your MCP client to the SSE endpoint and choose which tools to run. The server runs inside Docker and exposes the SSE stream at the /sse path. It does not require authentication, so you can start by starting the container and pointing your client to the local endpoint.
Recommended usage flow:
- Start the server via Docker Compose to bring up the containerized MCP server.
- Connect your MCP client to the SSE endpoint at the exposed port to start receiving events and invoking tools.
- Choose the tools you want to use, and monitor the SSE stream for outputs and statuses.
- Stop the server by tearing down the containers when you’re finished.
Available tools
dummy
A synchronous tool that prints the input message to the console and returns a success status along with the received message.
echo
An example tool that demonstrates SSE streaming by echoing the input message three times with a one-second delay between messages, then returning a completion status.