mcp_chatbot vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp_chatbot by keli-wen | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 247 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this month |
mcp_chatbot · Summary
A Python chatbot implementation compatible with MCP, supporting terminal and Streamlit interfaces with customizable LLM integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp_chatbot · Use cases
- Building chatbot applications with MCP tool integration capabilities
- Creating interactive terminal interfaces with LLM and MCP tool support
- Developing web-based chatbots with real-time streaming responses and tool visualization
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp_chatbot · Install
Installation
- Clone the repository:
git clone git@github.com:keli-wen/mcp_chatbot.git
cd mcp_chatbot- Set up virtual environment and install dependencies:
pip install uv
uv venv .venv --python=3.10
source .venv/bin/activate # or .venv\Scripts\activate for Windows
uv pip install -r requirements.txt- Configure environment:
cp .env.example .env
# Edit .env with your API keys and paths- Configure MCP servers in
mcp_servers/servers_config.json
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"mcp_chatbot": {
"command": "python",
"args": ["-m", "mcp_chatbot.server"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything