MCP Catalogs
Home

filesystem vs mcp-metatrader5-server

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

filesystem
by modelcontextprotocol
mcp-metatrader5-server
by Qoyyuum
Stars★ 85,748★ 133
30d uses
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
FinanceDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

filesystem · Summary

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

mcp-metatrader5-server · Summary

MCP server for MetaTrader 5 trading platform that provides AI assistants with market data and trading capabilities.

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-metatrader5-server · Use cases

  • AI-powered trading assistants that can analyze market data and execute trades
  • Automated trading systems that monitor markets and execute trades based on conditions
  • Risk management tools that analyze positions and trading history
  • Market research bots that collect and analyze historical market data

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.

mcp-metatrader5-server · Install

Installation

From PyPI (Recommended)
uvx --from mcp-metatrader5-server mt5mcp
From Source
git clone https://github.com/Qoyyuum/mcp-metatrader5-server.git
cd mcp-metatrader5-server
uv sync
uv run mt5mcp
Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-metatrader5-server": {
      "command": "uvx",
      "args": [
        "--from",
        "mcp-metatrader5-server",
        "mt5mcp"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.