MCP Catalogs
Home

filesystem vs TWSEMCPServer

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

filesystem
by modelcontextprotocol
TWSEMCPServer
by twjackysu
Stars★ 85,748★ 90
30d uses
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

filesystem · Summary

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

TWSEMCPServer · Summary

Comprehensive MCP server for Taiwan stock market data with real-time quotes and financial 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

TWSEMCPServer · Use cases

  • Analyze stock trends of specific Taiwan companies
  • Track foreign investment patterns in Taiwan markets
  • Identify high-dividend stocks and upcoming ex-dividend dates
  • Monitor market hotspots and unusual trading volumes
  • Screen value stocks with good ESG performance

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.

TWSEMCPServer · Install

Installation

Online Usage (Recommended)

{
  "twstockmcpserver": {
    "transport": "streamable_http",
    "url": "https://TW-Stock-MCP-Server.fastmcp.app/mcp"
  }
}

Docker Usage (stdio, no self-hosting)

{
  "twstockmcpserver": {
    "command": "docker",
    "args": [
      "run",
      "-i",
      "--rm",
      "--pull=always",
      "-e",
      "MCP_STDIO=1",
      "ghcr.io/twjackysu/twsemcpserver:latest"
    ]
  }
}

Docker Usage (HTTP, self-hosting)

docker run -d -p 8000:8000 -e PORT=8000 ghcr.io/twjackysu/twsemcpserver:latest

Local Installation

git clone https://github.com/twjackysu/TWStockMCPServer.git
cd TWStockMCPServer
uv sync && uv run fastmcp dev server.py

Claude Desktop Configuration

Add to config.json:

{
  "mcpServers": {
    "twstockmcpserver": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--pull=always",
        "-e",
        "MCP_STDIO=1",
        "ghcr.io/twjackysu/twsemcpserver:latest"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.