A simple Model Context Protocol (MCP) server that provides various tools to test edge cases with MCP clients. Useful for testing error handling in MCP clients.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-test-server": {
"command": "cargo",
"args": [
"run",
"--",
"mcp-test-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-test-server cargo run -- mcp-test-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-test-server": {
"command": "cargo",
"args": [
"run",
"--",
"mcp-test-server"
]
}
}
}
📋 Copy