Echo MCP Server
@aadversteeg
About Echo MCP Server
A Model Context Protocol (MCP) server implementing a echo service using .NETCORE
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"echo-mcp-server-aadversteeg": {
"command": "docker",
"args": [
"build",
"-f",
"src/Core.Infrastructure.McpServer/Dockerfile",
"-t",
"echo-mcp-server:latest",
"src/"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Echo MCP Server?
Echo MCP Server is a lightweight .NET Core server that implements the Model Context Protocol (MCP). It provides a single tool that echoes any message back to the client, making it a simple example of how to build a custom MCP server. It can be deployed locally or as a Docker container.
How to use Echo MCP Server?
Build from source with dotnet build src/echo.sln (requires .NET 9.0) or run a pre-built Docker image. Configure the server via appsettings.json or environment variables, then connect any MCP‑compatible client (e.g., Claude Desktop) and call the echo tool with a required message parameter.
Key features of Echo MCP Server
- Echo any message back to the client
- Customizable message format through
MessageFormatconfiguration - Built on the Model Context Protocol standard
- Deployable directly or as a Docker container
Use cases of Echo MCP Server
- Testing and debugging MCP client integrations
- Demonstrating a minimal MCP server implementation
- Providing a simple echo service for prototyping
FAQ from Echo MCP Server
What prerequisites are needed to run Echo MCP Server?
For local deployment you need .NET 9.0. For container deployment you need Docker.
How can I customize the echoed message format?
Set the MessageFormat in appsettings.json (e.g., "Server says: {message}") or pass it as an environment variable MessageFormat. If not set, the default format is "Echo: {message}".
How do I configure Echo MCP Server with Claude Desktop?
Add an entry to the mcpServers section of your Claude Desktop configuration. For local use, specify command: "dotnet" with args pointing to the DLL. For Docker, set command: "docker" with args including run, --rm, -i, and -e for environment variables.
What is the default message format?
The default format is "Echo: {message}". It can be overridden via the MessageFormat setting.
Can I run Echo MCP Server using Docker?
Yes. Build the Docker image with docker build -f src/Core.Infrastructure.McpServer/Dockerfile -t echo-mcp-server:latest src/ and run it with docker run -d --name echo-mcp echo-mcp-server:latest. You can also customize the message format via environment variables or mount a custom appsettings.json.
Frequently asked questions
What prerequisites are needed to run Echo MCP Server?
For local deployment you need .NET 9.0. For container deployment you need Docker.
How can I customize the echoed message format?
Set the `MessageFormat` in `appsettings.json` (e.g., `"Server says: {message}"`) or pass it as an environment variable `MessageFormat`. If not set, the default format is `"Echo: {message}"`.
How do I configure Echo MCP Server with Claude Desktop?
Add an entry to the `mcpServers` section of your Claude Desktop configuration. For local use, specify `command`: `"dotnet"` with `args` pointing to the DLL. For Docker, set `command`: `"docker"` with `args` including `run`, `--rm`, `-i`, and `-e` for environment variables.
What is the default message format?
The default format is `"Echo: {message}"`. It can be overridden via the `MessageFormat` setting.
Can I run Echo MCP Server using Docker?
Yes. Build the Docker image with `docker build -f src/Core.Infrastructure.McpServer/Dockerfile -t echo-mcp-server:latest src/` and run it with `docker run -d --name echo-mcp echo-mcp-server:latest`. You can also customize the message format via environment variables or mount a custom `appsettings.json`.
Basic information
More Other MCP servers
Activepieces
activepiecesAI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
MaxKB
1Panel-dev🔥 MaxKB is an open-source platform for building enterprise-grade agents. 强大易用的开源企业级智能体平台。
AutoBrowser MCP
autobrowser-aiBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Blender
ahujasidOpen-source MCP to use Blender with any LLM
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Comments