bear-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
bear-mcp by autonomee | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | ProductivityFile SystemKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
bear-mcp · Summary
Bear Notes MCP server enables AI to search, read, create, and browse Bear notes directly through their local SQLite database.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
bear-mcp · Use cases
- Search and retrieve specific notes from your Bear knowledge base using AI assistants
- Create new notes through AI interactions while maintaining existing tagging structure
- Browse and analyze notes by tags, including nested tag relationships
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
bear-mcp · Install
Installation
- Clone and setup:
git clone https://github.com/autonomee/bear-mcp.git
cd bear-mcp
bun install- Configure Claude Code:
Add to your Claude Code MCP settings (~/.claude.json or project settings):
{
"mcpServers": {
"bear-notes": {
"command": "bun",
"args": ["run", "/path/to/bear-mcp/src/index.ts"]
}
}
}- For HTTP mode:
export BEAR_MCP_API_KEY="your-secret-key"
bun run start:httpfilesystem · 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.