Echo MCP Server
@aadversteeg
关于 Echo MCP Server
A Model Context Protocol (MCP) server implementing a echo service using .NETCORE
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"echo-mcp-server-aadversteeg": {
"command": "docker",
"args": [
"build",
"-f",
"src/Core.Infrastructure.McpServer/Dockerfile",
"-t",
"echo-mcp-server:latest",
"src/"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
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.
其他 分类下的更多 MCP 服务器
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
Codelf
unbugA search tool helps dev to solve the naming things problem.
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale
ghidraMCP
LaurieWiredMCP Server for Ghidra
Blender
ahujasidOpen-source MCP to use Blender with any LLM
评论