The MCP Chat Client is an open-source tool designed for testing and evaluating MCP servers and agents. It provides a seamless interface for interacting with Large Language Models (LLMs) and MCP servers, both via CLI and a web interface.
-m
flag.--system
flag.~/.mcpchat/chats
.ANTHROPIC_API_KEY
is exported in your environment or in a .env
file.shell
npx mcp-chat --server "npx -y @modelcontextprotocol/server-filesystem /Users/$USER/Desktop"
You can specify your configuration file using the --config
flag:
- Mac:
shell
npx mcp-chat --config "~/Library/Application Support/Claude/claude_desktop_config.json"
- Windows:
shell
npx mcp-chat --config "%APPDATA%\Claude\claude_desktop_config.json"
Run the client in web mode with the --web
flag:
npx mcp-chat --web
In web mode, you can start new chats, send messages, and configure MCP servers via the UI.
Run prompts directly via CLI with the -p
flag:
npx mcp-chat --server "npx mcp-server-kubernetes" -p "List the pods in the default namespace"
Choose a model with the -m
flag:
npx mcp-chat --server "npx mcp-server-kubernetes" -m "claude-3.5"
Customize the system prompt with the --system
flag:
npx mcp-chat --system "Explain the output to the user in pirate speak." --server "npx mcp-server-kubernetes" -p "List the pods in the default namespace"
Test local builds of MCP servers with the following commands:
- Node JS:
shell
npx mcp-chat --server "/path/to/mcp-server-kubernetes/dist/index.js"
- Python:
shell
npx mcp-chat --server "uv --directory /path/to/mcp-server-weather/ run weather.py"
shell
git clone https://github.com/Flux159/mcp-chat
shell
bun install
shell
bun run dev
Run tests with:
bun run test
Build the project with:
bun run build
Publish the package with:
bun run publish
├── src/
│ ├── index.ts # Main client implementation & CLI params
│ ├── constants.ts # Default constants
│ ├── interactive.ts # Interactive chat prompt handling & logic
├── test/ # Test files
│ ├── cli.test.ts # Test CLI params
│ ├── config.test.ts # Test config file parsing
The MCP Chat Client is an open-source tool for testing and evaluating MCP servers and agents. It is available on npm.