Echo MCP Server
servidor echo-mcp-para-pruebas
Un servidor MCP (Protocolo de Contexto de Modelo) de eco simple con una echo_tool sencilla para probar clientes MCP. También es ideal como plantilla para nuevos servidores MCP.
Uso
Instale uv y agregue el servidor a una configuración MCP usando uvx :
{
"name": "echo-mcp-server-for-testing",
"command": "uvx",
"args": [
"echo-mcp-server-for-testing"
],
"env": {
"SECRET_KEY": "123456789"
}
}o clonar el repositorio y usar uv con un directorio:
{
"name": "echo-mcp-server-for-testing",
"command": "uv",
"args": [
"--directory",
"path/to/root/dir/",
"run",
"main.py"
],
"env": {
"SECRET_KEY": "123456789"
}
}Related MCP server: MCP Server
Desarrollo
Pruebas
Clone el repositorio y use mcp-client-for-testing para probar las herramientas del servidor.
uvx mcp-client-for-testing \
--config '
[
{
"name": "echo-mcp-server-for-testing",
"command": "uv",
"args": [
"--directory",
"path/to/root/dir/",
"run",
"main.py"
],
"env": {
"SECRET_KEY": "123456789"
}
}
]
' \
--tool_call '{"name": "echo_tool", "arguments": {"message": "Hello, world!"}}'Formato y pelusa
El código está formateado y alineado con ruff:
uv run ruff format
uv run ruff check --fixEdificio con rayos UV
Construya el paquete usando uv:
uv buildLanzamiento de una nueva versión
Para publicar una nueva versión del paquete en PyPI, cree y envíe una nueva etiqueta Git:
Revisa la rama principal y obtén la versión actual:
git checkout main git pull origin main git describe --tagsCrea y envía una nueva etiqueta Git:
git tag v0.2.0 git push origin v0.2.0
El flujo de trabajo de GitHub Actions compilará y publicará automáticamente el paquete en PyPI al añadir una nueva etiqueta. El número de versión del paquete de Python se derivará directamente de la etiqueta de Git.
Licencia
Este proyecto está licenciado bajo la Licencia MIT. Consulte el archivo de LICENCIA para más detalles.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceA stateless Model Context Protocol server that implements a simple echo functionality with resource, tool, and prompt components, enabling LLMs to echo back messages through standardized MCP interactions.1
- AlicenseNot gradedqualityDmaintenanceAn implementation of the Model Context Protocol (MCP) server that enables multiple clients to connect simultaneously and handles basic context management and messaging with an extendable architecture.MIT
- FlicenseNot gradedqualityDmaintenanceA simple demonstration MCP server that provides an echo tool and resource for learning how to build MCP servers. Serves as a starting point and template for creating custom MCP server implementations.
- FlicenseNot gradedqualityCmaintenanceMCP server providing greeting and echo tools for testing and demonstration.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/piebro/echo-mcp-server-for-testing'
If you have feedback or need assistance with the MCP directory API, please join our Discord server