Skip to main content
Glama

ethora-mcp-server

Configure Connection

ethora-configure
Idempotent

Set the Ethora API URL and credentials for this MCP session. Stores values in memory only; each call merges with omitted fields kept. Alternative to env vars (ETHORA_API_URL / ETHORA_APP_JWT / ETHORA_APP_TOKEN / ETHORA_B2B_TOKEN). On a hosted server apiUrl is fixed and cannot be changed; credentials are per session. Auth: none required — this establishes auth material. Errors: only if a value is structurally invalid. Follow with an ethora-auth-use-* tool to pick the active mode.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
apiUrlNoFull Ethora API URL including the version path, e.g. `https://api.chat.ethora.com/v1` or `http://localhost:8080/v1`. If you only have the host, set ETHORA_BASE_URL env instead and the server appends `/v1`.
appJwtNoEthora App JWT, used only to bootstrap login/register in user-auth mode. Usually starts with `JWT `. Secret — never commit it.
appTokenNoPer-app appToken for app-scoped flows (broadcast, sources, bot). Setting this makes app-token auth available via `ethora-auth-use-app`. Secret.
b2bTokenNoB2B server token for tenant-actor `x-custom-token` auth (a JWT with `type=server`). Required for B2B provisioning flows. Secret.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds substantial behavior beyond annotations: values are stored in memory only, omitted fields are preserved across calls, credentials are per-session, `apiUrl` may be fixed on hosted servers, no auth is required to set auth material, and errors occur only for structural invalidity. This strongly complements the idempotentHint and non-read-only annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Six compact sentences cover action, storage model, env-var alternative, platform constraint, auth requirement, error behavior, and next step. Every sentence earns its place, and the most important operational fact is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is complete enough for an optional-parameter configuration tool: it explains scope, merging, constraints, auth, error behavior, and the correct next tool. The only minor gap is that no success response/return value is described, though the error statement partially compensates since there is no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and each parameter already has detailed descriptions including examples, secret warnings, and mode implications. The tool description adds relevant session-level semantics like merge-on-partial-call, but does not need to restate per-parameter meaning; baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Set the Ethora API URL and credentials for this MCP session.' It clearly differentiates itself from the auth-use siblings by framing configuration as establishing auth material that is later selected by an `ethora-auth-use-*` tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use this tool versus env vars, notes the hosted-server constraint on `apiUrl`, and gives a direct follow-up instruction: 'Follow with an `ethora-auth-use-*` tool to pick the active mode.' This gives an agent actionable selection and sequencing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.