Skip to main content
Glama

ethora-mcp-server

Register Account

ethora-user-register

Create a new Ethora user account by email + first/last name, then log in and bind the session. A password is generated when omitted and returned once. By default also mints a long-lived API key so an agent can reconnect later with Authorization: Bearer <key> (no human step needed). Auth: user-auth mode and a configured appJwt (on a hosted server this is preset). Errors: 401 no appJwt; 422 email already registered or password shorter than 6 chars; 429 rate limited. Related: bulk provisioning uses ethora-users-batch-create-v2.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesEmail address for the new user. Must be RFC-5322 valid and not already registered within this app. No confirmation click is required to log in; the address is used for password reset.
lastNameYesLast name shown in the user's profile.
passwordNoPassword for the account (min 6 chars). Omit to have a strong random password generated and returned once in the result.
firstNameYesFirst name shown in the user's profile and message attributions across chat rooms and the app UI.
apiKeyNameNoLabel for the API key (default `mcp-signup`).
createApiKeyNoMint a long-lived API key right after signup and return it once. Default true. Set false if you only need this session.
apiKeyTtlDaysNoAPI key lifetime in days. Server default applies when omitted.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations only say this is not read-only and not destructive; the description carries the full behavioral burden. It covers password auto-generation, one-time return, API key minting by default, session binding, auth prerequisites, and specific error codes. It could still add more about the exact response shape, but given the constraints it is quite complete.

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

Conciseness4/5

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

The description is two concise sentences plus an error list and sibling pointer. It is not bloated and front-loads the primary purpose before auth/errors. Minor redundancy with schema descriptions means it is not a perfect 5.

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?

With 7 parameters, no output schema, and only basic annotations, this description still covers high-level behavior, errors, authentication, and the API-key reconnection flow. It does not detail a response schema, but while there is no output schema it may be incomplete in exact return shape, so this is a minor gap.

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

Parameters4/5

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

Parameter schema already covers 100% of the properties, so baseline is 3. The description adds value by explaining the `appJwt` auth dependency, tying API key creation to reconnection, and summarizing which error conditions map to email/password validation, going beyond the raw schema texts.

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 says clearly that this tool creates a new user, logs the session in, and can mint an API key. It explicitly names the related bulk alternative, `ethora-users-batch-create-v2`, so an agent can tell this tool apart from its sibling without opening the schema.

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

Usage Guidelines4/5

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

The description gives clear context for when to use this tool (new account + session + optional API key) and names the bulk alternative. It does not explicitly tell the agent when not to use it (e.g., for an already-existing user, `ethora-user-login`), but the purpose is clear enough.

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.