Ethora MCP Cli MCP Server

MCP server for the Ethora chat & messaging platform: login, manage apps and chat rooms, broadcast messages, and deploy AI agents / chatbots with RAG

Remote serverstreamable-http

What is the Ethora MCP Cli MCP server?

MCP server for the Ethora chat & messaging platform: login, manage apps and chat rooms, broadcast messages, and deploy AI agents / chatbots with RAG sources. The ethora mcp cli mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 9 defined tools rather than through you.

What it actually does

An MCP (Model Context Protocol) CLI/server that connects popular MCP clients to the Ethora platform — an open-source chat & messaging platform with a built-in AI agent / chatbot framework. This runs locally on a developer machine via stdio rather than as a hosted Ethora service. Use it from Cursor, VS Code MCP, Claude Desktop, or Windsurf/Cline to manage apps and chat rooms, broadcast messages, deploy AI agents / chatbots with RAG sources, and automate B2B provisioning workflows. (ERC-20 wallet tools are also included — see the tool list below.)

Its toolset

Everything the assistant can do here goes through one of these:

Configuration

You will need 3 environment variables: ETHORA_B2B_TOKEN, ETHORA_API_URL, ETHORA_BASE_URL. 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.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Ethora MCP Cli's toolset — Success, Error, code and 6 more — is a fair guide to whether it matches your workflow. It is maintained by dappros; 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.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Ethora MCP Cli.
  • 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 ethora mcp cli mcp server does with a few real requests.

Available tools

ToolWhat it does
Success{ ok: true, ts, meta, data }
Error{ ok: false, ts, meta, error }, where error includes:
codestable string (prefer API code, otherwise inferred)
httpStatusHTTP status when the failure came from an API call
requestIdrequest/correlation id if returned by API
hint1-line “what to do next”
CursorUse the **[Add to Cursor](https://cursor.com/en/install-mcp?name=ethora&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBldGhvcmEvbWNwLXNlcnZlciJdfQ%3D%3D)** button above, or manually: **Settings → MCP → Add new global
WindsurfThe Windsurf tool exposed by this server.
ClineOpen the MCP servers panel and edit cline_mcp_settings.json:

How to install the Ethora MCP Cli MCP server

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

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

Configuration

VariableDescriptionRequired
ETHORA_B2B_TOKENCredential the server authenticates with.Yes
ETHORA_API_URLEndpoint or connection string the server talks to.Yes
ETHORA_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Ethora MCP Cli to Success.
  • Use Ethora MCP Cli to Error.
  • Use Ethora MCP Cli to code.

Frequently asked questions

It connects Ethora MCP Cli to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (Success, Error, code, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ethora MCP Cli directly.