Shioaji MCP Server

關於使用 GitHub Container Registry 的 Docker 映像詳細資訊,請參閱 [docs/CONTAINER_REGISTRY.md](docs/CONTAINER_REGISTRY.md)。

Local serverstdioPython

What is the Shioaji MCP MCP server?

Shioaji MCP MCP server exists for a simple reason — assistants are far more useful when they can act on Shioaji MCP directly instead of describing what you should do. 關於使用 GitHub Container Registry 的 Docker 映像詳細資訊,請參閱 docs/CONTAINER_REGISTRY.md。.

Configuration and credentials

You will need 2 environment variables: SHIOAJI_API_KEY, SHIOAJI_SECRET_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Installation goes through your MCP client rather than a global install: point it at mcp-client on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

Among the cloud and infrastructure options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by offbeat-studio; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the shioaji mcp mcp server does with a few real requests.

How to install the Shioaji MCP MCP server

### MCP 客戶端設定

在您的 MCP 客戶端中加入以下設定:

```json
{
  "mcpServers": {
    "shioaji": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i", "--platform=linux/amd64",
        "-e", "SHIOAJI_API_KEY=your_api_key",
        "-e", "SHIOAJI_SECRET_KEY=your_secret_key",
        "-e", "SHIOAJI_TRADING_ENABLED=false",
        "ghcr.io/musingfox/shioaji-mcp:latest"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SHIOAJI_API_KEYCredential the server authenticates with.Yes
SHIOAJI_SECRET_KEYCredential the server authenticates with.Yes

Frequently asked questions

It connects Shioaji MCP to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Shioaji MCP directly.