bonnard-cli vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
bonnard-cli by bonnard-data | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 48 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsDatabase | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
bonnard-cli · Summary
Bonnard CLI provides an agent-native analytics platform with MCP server integration for governed data queries.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
bonnard-cli · Use cases
- AI agents querying governed metrics through MCP for consistent answers
- Creating markdown dashboards with various chart components
- Deploying semantic layers with versioning and CI/CD support
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
bonnard-cli · Install
Install with npm:
npm install -g @bonnard/cliSetup the MCP server:
bon mcpFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"bonnard": {
"command": "npx",
"args": ["@bonnard/cli", "mcp"]
}
}
}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.