mcp-chatbot vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-chatbot by mctrinh | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper Toolsresearch | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
mcp-chatbot · Summary
MCP-powered research assistant using Claude 3 for literature search and summarization.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-chatbot · Use cases
- Academic literature review and research
- Engineering research paper summarization
- Information extraction from technical papers
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-chatbot · Install
# Option 1: Using uv (recommended)
curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install -e .
# Option 2: Using pip
pip install -e .
# Run the research server
python research_server.py
# In a new terminal, launch the chatbot CLI
mcp-chatbot runTo integrate with Claude Desktop, add the following to your config.json:
{
"mcpServers": {
"mcp-chatbot": {
"command": "python",
"args": ["-m", "mcp_chatbot.cli"],
"env": {
"ANTHROPIC_MODEL": "claude-3-opus-20240229"
}
}
}
}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.