concierge vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
concierge by concierge-hq | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 534 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
concierge · Summary
Concierge is a Python SDK that enhances MCP servers with progressive tool disclosure, workflow state management, and semantic search capabilities.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
concierge · Use cases
- E-commerce platforms with multi-step purchasing workflows
- Complex API management with hundreds of endpoints
- Multi-agent systems requiring state persistence across interactions
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
concierge · Install
Install Concierge SDK using pip:
pip install concierge-sdkFor new projects, scaffold with:
concierge init my-project
cd my-project
python main.pyTo wrap an existing FastMCP server:
from concierge import Concierge
from mcp.server.fastmcp import FastMCP
app = Concierge(FastMCP("my-server"))For Claude Desktop integration, add to config.json:
{
"mcpServers": {
"concierge": {
"command": "python",
"args": ["-m", "concierge", "run"],
"env": {}
}
}
}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.