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 | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 11 mo ago | this 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
- Install QMT-MCP-Server
$ pip install git+https://github.com/jm12138/qmt-mcp-server- Start QMT or MiniQMT client
- Start MCP server
stdio mode (for local use)
$ qmt_mcp_server_stdioSSE mode (for server deployment)
$ qmt_mcp_server_sse --host 0.0.0.0 --port 8000- 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.