AgentHubAgentHub

ethora-mcp-cli

MCP ServerMCP Registry官方收录

io.github.dappros/ethora-mcp-cli · v26.5.2

MCP server for the Ethora chat & messaging platform: chat ops, AI agents, RAG, automation.

概览

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

安装

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

{
  "mcpServers": {
    "ethora-mcp-cli": {
      "command": "npx",
      "args": [
        "-y",
        "@ethora/mcp-server"
      ]
    }
  }
}

环境变量

ETHORA_API_URL可选

Full Ethora API URL. Defaults to https://api.chat.ethora.com/v1 if neither ETHORA_API_URL nor ETHORA_BASE_URL is set.

ETHORA_BASE_URL可选

Base host URL (e.g. https://api.chat.ethora.com). The server appends /v1 automatically. Use ETHORA_API_URL instead if you need a non-/v1 path.

ETHORA_APP_JWT可选secret

App JWT used for the user-auth bootstrap flow (login/register). Usually starts with 'JWT '. Optional; can also be set at runtime via the ethora-configure tool.

ETHORA_B2B_TOKEN可选secret

B2B server token used for tenant-actor x-custom-token auth (JWT with type=server). Required for B2B / app provisioning flows. Optional; can also be set at runtime.

ETHORA_MCP_ENABLE_DANGEROUS_TOOLS可选

Set to 'true' to expose destructive tools (app deletion, wallet transfers, bulk delete). Disabled by default.

相关资源

统一 Manifest

{
  "id": "io.github.dappros/ethora-mcp-cli",
  "type": "mcp-server",
  "version": "26.5.2",
  "displayName": "ethora-mcp-cli",
  "description": "MCP server for the Ethora chat & messaging platform: chat ops, AI agents, RAG, automation.",
  "repository": {
    "url": "https://github.com/dappros/ethora-mcp-cli",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@ethora/mcp-server",
        "version": "26.5.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "ETHORA_API_URL",
            "description": "Full Ethora API URL. Defaults to https://api.chat.ethora.com/v1 if neither ETHORA_API_URL nor ETHORA_BASE_URL is set."
          },
          {
            "name": "ETHORA_BASE_URL",
            "description": "Base host URL (e.g. https://api.chat.ethora.com). The server appends /v1 automatically. Use ETHORA_API_URL instead if you need a non-/v1 path."
          },
          {
            "name": "ETHORA_APP_JWT",
            "description": "App JWT used for the user-auth bootstrap flow (login/register). Usually starts with 'JWT '. Optional; can also be set at runtime via the ethora-configure tool.",
            "isSecret": true
          },
          {
            "name": "ETHORA_B2B_TOKEN",
            "description": "B2B server token used for tenant-actor x-custom-token auth (JWT with type=server). Required for B2B / app provisioning flows. Optional; can also be set at runtime.",
            "isSecret": true
          },
          {
            "name": "ETHORA_MCP_ENABLE_DANGEROUS_TOOLS",
            "description": "Set to 'true' to expose destructive tools (app deletion, wallet transfers, bulk delete). Disabled by default."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.dappros/ethora-mcp-cli",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.dappros%2Fethora-mcp-cli/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
ethora-mcp-cli — MCP Server 安装与配置 · AgentHub