mcp-mongo-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-mongo-server by kiliczsh | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 278 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-mongo-server · Summary
An MCP server for MongoDB interaction with schema inference, query capabilities, and configurable read-only mode.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-mongo-server · Use cases
- Enabling AI assistants to query and analyze MongoDB databases
- Automating database management operations through natural language
- Allowing LLM applications to access and manipulate data in MongoDB collections
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
mcp-mongo-server · Install
Installation
npx -y mcp-mongo-server mongodb://localhost:27017/databaseUsage
# Start server with MongoDB URI
npx -y mcp-mongo-server mongodb://user:password@localhost:27017/database
# Connect in read-only mode
npx -y mcp-mongo-server mongodb://user:password@localhost:27017/database --read-onlyClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"mongo": {
"command": "npx",
"args": ["-y", "mcp-mongo-server", "mongodb://localhost:27017/database"]
}
}
}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.