everything vs AgentChat
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | AgentChat by Shy2593666979 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 715 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
AgentChat · Summary
AgentChat is an LLM-based intelligent agent communication platform with MCP protocol support for dynamic tool calling and knowledge retrieval.
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
AgentChat · Use cases
- Enterprise knowledge management with RAG-enabled AI agents
- Multi-agent task automation and workflow orchestration
- Custom tool integration via OpenAPI-based MCP server generation
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-everythingAgentChat · Install
AgentChat MCP Server Installation
Docker Deployment
# 1. Clone the repository
git clone https://github.com/Shy2593666979/AgentChat.git
cd AgentChat
# 2. Edit configuration file
vim docker/docker_config.yaml
# 3. Start the service
cd docker
docker-compose up --build -dLocal Development
# Backend setup
cd src/backend
pip install -r requirements.txt
uv sync # Recommended
# Frontend setup
cd src/frontend
npm install
npm run devClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"agentchat": {
"command": "python",
"args": ["path/to/agentchat/mcp_server.py"]
}
}
}