iai-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
iai-mcp by CodeAbra | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 120 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
iai-mcp · Summary
IAI-MCP is a high-performance memory system for AI coding assistants that implements MCP protocol to provide long-term memory.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
iai-mcp · Use cases
- Enhancing long-term context in coding sessions
- Maintaining continuity across multiple development sessions
- Automatically recalling previously discussed technical decisions
- Personalizing AI assistant interaction style over time
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
iai-mcp · Install
Installation
- Clone and install:
git clone https://github.com/CodeAbra/iai-mcp.git
cd iai-mcp
bash scripts/install.sh- Install capture and recall hooks:
iai-mcp capture-hooks install- Connect MCP host (Claude Code):
claude mcp add iai-mcp -- node "$(pwd)/mcp-wrapper/dist/index.js"For Claude Desktop, add to config:
{
"mcpServers": {
"iai-mcp": {
"command": "node",
"args": ["/absolute/path/to/iai-mcp/mcp-wrapper/dist/index.js"]
}
}
}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.