# mcp-test [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/bharath-krishna/mcp-test  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/mcp-test-2

## Description
A simple MCP server with an echo tool for testing purposes

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `uvx` (confidence: high):

```json
"mcpServers": {
  "mcp-test": {
    "command": "uvx",
    "args": ["mcp-echo-server"]
  }
}
```

## Documentation & 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!
```

