ReasoningBank-MCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
ReasoningBank-MCP by hanw39 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.