AgentHubAgentHub

StablecoinX

MCP ServerMCP Registry官方收录

io.github.e2xlabs/stablecoinx-mcp · v0.1.2

Drive a StablecoinX business account — auth, API keys, sessions, paymaster, and webhooks.

概览

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

安装

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

{
  "mcpServers": {
    "stablecoinx-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@stablecoinx/mcp"
      ],
      "env": {
        "SCX_STATE_PASSPHRASE": "<SCX_STATE_PASSPHRASE>"
      }
    }
  }
}

环境变量

SCX_STATE_PASSPHRASE必填secret

Passphrase used to encrypt the local state file (JWT / API key / session key) at rest. Pick any string. The harness endpoint, thirdweb client, origin and login chain are baked into the package — this is the only required input.

SCX_STATE_DIR可选

Optional. Directory for the encrypted local state file. Defaults to %APPDATA%/stablecoinx-mcp (Windows) or $XDG_CONFIG_HOME/stablecoinx-mcp.

相关资源

统一 Manifest

{
  "id": "io.github.e2xlabs/stablecoinx-mcp",
  "type": "mcp-server",
  "version": "0.1.2",
  "displayName": "StablecoinX",
  "description": "Drive a StablecoinX business account — auth, API keys, sessions, paymaster, and webhooks.",
  "repository": {
    "url": "https://github.com/e2xlabs/stablecoinx-mcp",
    "source": "github"
  },
  "homepage": "https://harness.stablecoinx.com",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@stablecoinx/mcp",
        "version": "0.1.2",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SCX_STATE_PASSPHRASE",
            "description": "Passphrase used to encrypt the local state file (JWT / API key / session key) at rest. Pick any string. The harness endpoint, thirdweb client, origin and login chain are baked into the package — this is the only required input.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "SCX_STATE_DIR",
            "description": "Optional. Directory for the encrypted local state file. Defaults to %APPDATA%/stablecoinx-mcp (Windows) or $XDG_CONFIG_HOME/stablecoinx-mcp."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.e2xlabs/stablecoinx-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.e2xlabs%2Fstablecoinx-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
StablecoinX — MCP Server 安装与配置 · AgentHub