io.github.bharath-krishna/mcp-test
A simple MCP server with an echo tool for testing purposes
Open source Open in the app JSON README (API)
About
A simple MCP server with an echo tool for testing purposes
Details
- Kind
- MCP servers
- Topic
- Developer tools
- Publisher
- bharath-krishna
- Origin
- official
- Category
- ferramentas
- Transport
- local
- Version
- 0.1.0
- Last push
- 2025-11-07T07:58:26Z
- Repository state
- ativo
- Language
- Python
- Added
- 2026-08-29 03:02:31
- Updated
- 2026-08-29 03:02:31
- Origin id
io.github.bharath-krishna/mcp-test
README
# MCP Test Server
mcp-name: io.github.bharath-krishna/mcp-test
A simple Model Context Protocol (MCP) server with an echo tool for testing purposes.
## Features
- **Echo Tool**: Returns back any message you send to it
## Installation
```bash
pip install mcp-echo-server
```
## Usage
Add this server to your MCP client configuration:
```json
{
"mcpServers": {
"mcp-echo-server": {
"command": "mcp-echo-server"
}
}
}
```
## Development
Install in development mode:
```bash
uv pip install -e .
```
## Tools
### echo
Echoes back the provided message.
**Input:**
- `message` (string, required): The message to echo back
**Example:**
```json
{
"message": "Hello, world!"
}
```
**Output:**
```
Echo: Hello, world!
```