MCP Catalogs
Home

qmt-mcp-server vs filesystem

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

qmt-mcp-server
by jm12138
filesystem
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4077
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit11 mo agothis month

qmt-mcp-server · Summary

An MCP server for QMT platform that provides stock market data download and query functionality.

filesystem · Summary

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

qmt-mcp-server · Use cases

  • Financial analysts researching stock performance trends
  • Investors tracking multiple stock portfolios
  • AI assistants providing real-time market data and analysis

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

qmt-mcp-server · Install

Installation

  1. Install QMT-MCP-Server
$ pip install git+https://github.com/jm12138/qmt-mcp-server
  1. Start QMT or MiniQMT client
  1. Start MCP server

stdio mode (for local use)

$ qmt_mcp_server_stdio

SSE mode (for server deployment)

$ qmt_mcp_server_sse --host 0.0.0.0 --port 8000
  1. Client configuration
Claude Desktop
{
    "mcpServers": {
        "qmt-mcp-server": {
            "command": "qmt_mcp_server_stdio"
        }
    }
}
VS Code
{
    "servers": {
        "qmt-mcp-server": {
            "command": "qmt_mcp_server_stdio"
        }
    }
}

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.