AgentHubAgentHub

GMO Coin FX MCP Server

MCP ServerMCP Registry官方收录

io.github.RikitoNoto/gmocoin-fx-mcp · v1.0.1

MCP server for GMO Coin FX trading, positions, executions, klines, and account balances.

概览

GMO Coin FX MCP Server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "gmocoin-fx-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/rikitonoto/gmocoin-fx-mcp:1.0.1"
      ],
      "env": {
        "GMO_API_KEY": "<GMO_API_KEY>",
        "GMO_SECRET_KEY": "<GMO_SECRET_KEY>"
      }
    }
  }
}

环境变量

GMO_API_KEY必填secret

GMO Coin FX API key.

GMO_SECRET_KEY必填secret

GMO Coin FX secret key.

ORDER_SIZE_LIMIT可选

Optional maximum order size accepted by order-entry tools.

ORDER_SYMBOL_LIMITS可选

Optional comma-separated list of symbols accepted by order tools.

ORDER_CLIENT_ORDER_ID_PREFIX可选

Optional ASCII alphanumeric prefix for generated and filtered client order IDs.

相关资源

统一 Manifest

{
  "id": "io.github.RikitoNoto/gmocoin-fx-mcp",
  "type": "mcp-server",
  "version": "1.0.1",
  "displayName": "GMO Coin FX MCP Server",
  "description": "MCP server for GMO Coin FX trading, positions, executions, klines, and account balances.",
  "repository": {
    "url": "https://github.com/RikitoNoto/gmocoin-fx-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "ghcr.io/rikitonoto/gmocoin-fx-mcp:1.0.1",
        "runtimeHint": "docker",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "GMO_API_KEY",
            "description": "GMO Coin FX API key.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "GMO_SECRET_KEY",
            "description": "GMO Coin FX secret key.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "ORDER_SIZE_LIMIT",
            "description": "Optional maximum order size accepted by order-entry tools."
          },
          {
            "name": "ORDER_SYMBOL_LIMITS",
            "description": "Optional comma-separated list of symbols accepted by order tools."
          },
          {
            "name": "ORDER_CLIENT_ORDER_ID_PREFIX",
            "description": "Optional ASCII alphanumeric prefix for generated and filtered client order IDs."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.RikitoNoto/gmocoin-fx-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.RikitoNoto%2Fgmocoin-fx-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
GMO Coin FX MCP Server — MCP Server 安装与配置 · AgentHub