filesystem vs maverick-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | maverick-mcp by wshobson | |
|---|---|---|
| Stars | ★ 85,748 | ★ 549 |
| 30d uses | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | FinanceAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
maverick-mcp · Summary
A comprehensive MCP server for financial analysis, technical indicators, and portfolio optimization.
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
maverick-mcp · Use cases
- Individual traders performing technical analysis on stocks
- Investors optimizing their portfolio allocations
- Financial analysts screening stocks based on multiple strategies
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.
maverick-mcp · Install
Installation
**Prerequisites:**
- Python 3.12+
- uv (recommended) or pip
- TA-Lib for technical analysis
- Optional: Redis for caching, PostgreSQL/SQLite for persistence
**Quick Start:**
# Clone and install with uv
uv sync
cp .env.example .env
# Add Tiingo API key to .env
# Start server
make dev**Claude Desktop Configuration:**
{
"mcpServers": {
"maverick-mcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:8003/sse/"]
}
}
}