MCP Catalogs
Home

QuantDinger vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

QuantDinger
by brokermr810
filesystem
by modelcontextprotocol
Stars★ 5,392★ 85,748
30d uses
Score5877
Official
Categories
FinanceAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

QuantDinger · Summary

QuantDinger is an AI-powered quantitative trading platform with MCP server integration for market research and trading operations.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

QuantDinger · Use cases

  • AI-driven market research and strategy development
  • Automated backtesting of trading strategies
  • AI agent-assisted trade execution with audit logging

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

QuantDinger · Install

QuantDinger can be installed via Docker Compose in just a few steps:

git clone https://github.com/brokermr810/QuantDinger.git && cd QuantDinger && cp backend_api_python/env.example backend_api_python/.env && chmod +x scripts/generate-secret-key.sh && ./scripts/generate-secret-key.sh && docker-compose up -d --build

After starting the service, access it at http://localhost:8888 with default credentials quantdinger/123456 (be sure to change the password).

To use with Claude Desktop, configure MCP server with:

{
  "mcpServers": {
    "quantdinger": {
      "command": "uvx",
      "args": ["quantdinger-mcp"],
      "env": {
        "QUANTDINGER_BASE_URL": "http://localhost:8888",
        "QUANTDINGER_AGENT_TOKEN": "qd_agent_xxxxxxxx"
      }
    }
  }
}

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.

Comparison generated from public README + GitHub signals. Last updated automatically.