ReasoningBank-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ReasoningBank-MCP by hanw39 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 7 mo ago | this month |
ReasoningBank-MCP · Summary
A production-ready MCP server implementing ReasoningBank: Memory as Test-Time Compute Scaling for AI agents to evolve reasoning capabilities through experience.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ReasoningBank-MCP · Use cases
- Long-running AI agents that accumulate experience over multiple interactions
- Multi-agent systems where different agents need isolated memory pools
- Complex problem-solving domains where past successful strategies should inform future approaches
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
ReasoningBank-MCP · Install
Installation
- Clone and navigate to the repository:
git clone https://github.com/hanw39/ReasoningBank-MCP.git
cd ReasoningBank-MCP- Install dependencies:
pip install -e .Claude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"reasoning-bank": {
"command": "reasoning-bank-mcp",
"env": {
"DASHSCOPE_API_KEY": "your_dashscope_api_key"
}
}
}
}Or for SSE mode:
{
"mcpServers": {
"reasoning-bank": {
"url": "http://127.0.0.1:8000/sse"
}
}
}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