io.github.dappros/ethora-mcp-server
NPM · @ETHORA/MCP-SERVER · SCANNED AUG 3
MCP server for the Ethora chat & messaging platform: chat ops, AI agents, RAG, automation.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (108 of 109), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (108 of 109), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (ISC).Pass
- Actively maintained (last published 80 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability77
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 14235 tokens (~195/item across 73 items; 69 tools + 4 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @ethora/mcp-server
claude mcp add dappros-ethora-mcp-server -- npx -y @ethora/mcp-server
codex mcp add dappros-ethora-mcp-server -- npx -y @ethora/mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"dappros-ethora-mcp-server": {
"type": "local",
"command": [
"npx",
"-y",
"@ethora/mcp-server"
],
"enabled": true
}
}
} openclaw mcp add dappros-ethora-mcp-server --command npx --arg -y --arg @ethora/mcp-server
mcp_servers:
dappros-ethora-mcp-server:
command: "npx"
args: ["-y", "@ethora/mcp-server"] {
"mcpServers": {
"dappros-ethora-mcp-server": {
"command": "npx",
"args": [
"-y",
"@ethora/mcp-server"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +30
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- License: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Stability: unverified → 0.23 ▲ functional
- Schema quality: unverified → excellent ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- Licence: ISC functional
- 1 Aug 26 +15
- Malware scan: unverified → pass ▲ security
- 31 Jul 26 −27
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 51
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@ethora/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 108 packages
108 packages in the resolved dependency tree · 108 deprecated · 32 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
ethora-sources-site-crawl ~209
Crawl a website URL and ingest its content into an app's RAG sources (legacy user-auth route). Async — pages become queryable once indexing finishes; `followLink: true` follows in-domain links and can ingest many pages. Auth: user-auth mode, active session; the user must own the app. Errors: 401 not logged in; 403 not owner; 400 malformed `url`; 404 unknown `appId`. Related: app-token/B2B flows use `ethora-sources-site-crawl-v2`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId to ingest into. Optional — defaults to the app set via `ethora-app-select`. |
| followLink | boolean | — | If true, also crawl in-domain links reachable from `url`. Can ingest many pages — use with care. Default false (single page). |
| url | string | yes | Absolute URL to crawl, e.g. `https://example.com/docs`. |
No output schema declared.
No examples provided.
ethora-sources-site-crawl-v2 ~221
Crawl a website URL and ingest its content into an app's RAG sources (app-token / B2B variant of `ethora-sources-site-crawl`). Async — returns once the job is accepted; `followLink: true` follows in-domain links and can ingest many pages. Auth: app-token mode OR B2B mode with an explicit `appId`. Errors: 401/403 wrong auth; 400 malformed `url`; 404 unknown `appId`. Related: `ethora-sources-site-crawl-v2-wait` (block until done).
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId to ingest into. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
| followLink | boolean | — | If true, also crawl in-domain links reachable from `url`. Can ingest many pages — use with care. |
| url | string | yes | Absolute URL to crawl, e.g. `https://example.com/docs`. |
No output schema declared.
No examples provided.
ethora-sources-site-crawl-v2-wait ~257
Crawl a website URL and block until the server finishes — a single-call, long-timeout variant of `ethora-sources-site-crawl-v2` (same crawl + embed effect). Returns `{ done: true, durationMs, result }`. Auth: app-token mode OR B2B mode with an explicit `appId`. Errors: 401/403 wrong auth; 400 malformed `url`; 504/timeout if it takes longer than `timeoutMs` (the job may still complete server-side — check with `ethora-sources-site-list-v2`).
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId to ingest into. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
| followLink | boolean | — | If true, also crawl in-domain links reachable from `url`. Can ingest many pages — use with care. |
| timeoutMs | integer | — | How long to wait for the crawl to finish, in milliseconds. Default 120000. Caps at 600000 (10 min). |
| url | string | yes | Absolute URL to crawl, e.g. `https://example.com/docs`. |
No output schema declared.
No examples provided.
ethora-sources-site-delete-records-v1 ~187
Bulk-remove crawled URLs (1–100) from an app's RAG sources in one call, matched by exact url strings (legacy owner/admin user-auth route). Deletes each matching source record and its embeddings; not reversible. URLs not present are skipped. Auth: user-auth mode, active session; the user must own the app. Errors: 401 not logged in; 403 not owner; 404 unknown `appId`. Related: single-URL variant `ethora-sources-site-delete-url`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the URLs belong to. Optional — defaults to the app set via `ethora-app-select`. |
| urls | array | yes | Exact crawled URL strings to remove, 1–100 per call. Get the stored values from `ethora-sources-site-list-v2`. |
No output schema declared.
No examples provided.
ethora-sources-site-delete-url ~181
Remove a single crawled URL from an app's RAG sources, matched by its exact url string (legacy user-auth route). Deletes the source record and its embeddings; not reversible. Matches on the exact stored URL string. Auth: user-auth mode, active session; the user must own the app. Errors: 401 not logged in; 403 not owner; 404 `url` not a crawled source. Related: get the stored value from `ethora-sources-site-list-v2`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the URL belongs to. Optional — defaults to the app set via `ethora-app-select`. |
| url | string | yes | Exact crawled URL string to remove (must match what was stored — get it from `ethora-sources-site-list-v2`). |
No output schema declared.
No examples provided.
ethora-sources-site-delete-url-v2 ~217
Remove a single crawled URL from an app's RAG sources, matched by its exact url string (app-token / B2B variant of `ethora-sources-site-delete-url`). Deletes the source record and its embeddings; not reversible. Matches on the exact stored URL string. Auth: app-token mode OR B2B mode with an explicit `appId`. Errors: 401/403 wrong auth; 404 `url` not a crawled source. Related: get the stored value from `ethora-sources-site-list-v2`; bulk-by-id is `ethora-sources-site-delete-url-v2-batch`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the URL belongs to. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
| url | string | yes | Exact crawled URL string to remove (must match what was stored — get it from `ethora-sources-site-list-v2`). |
No output schema declared.
No examples provided.
ethora-sources-site-list-v2 ~158
List an app's crawled website sources, including each source's id, URL, and current RAG tags. Their ids feed `ethora-sources-site-tags-update-v2`, `ethora-sources-site-delete-url-v2-batch`, and `ethora-sources-site-reindex-v2`. Auth: app-token mode OR B2B mode with an explicit `appId`. Errors: 401/403 wrong auth; 404 unknown `appId`; empty list if nothing has been crawled.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId to list sources for. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
No output schema declared.
No examples provided.
ethora-sources-site-reindex ~196
Re-crawl and re-embed a previously crawled URL by its `urlId`, refreshing the RAG content for that page (legacy user-auth route). Async — the existing source record is updated in place once indexing finishes. Auth: user-auth mode, active session; the user must own the app. Errors: 401 not logged in; 403 not owner; 404 unknown `appId` or `urlId`. Related: get `urlId` from `ethora-sources-site-list-v2`; app-token/B2B uses `ethora-sources-site-reindex-v2`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the URL belongs to. Optional — defaults to the app set via `ethora-app-select`. |
| urlId | string | yes | Id of a previously crawled URL record. Get it from `ethora-sources-site-list-v2`. |
No output schema declared.
No examples provided.
ethora-sources-site-reindex-v2 ~212
Re-crawl and re-embed a previously crawled URL by its `urlId`, refreshing its RAG content (app-token / B2B variant of `ethora-sources-site-reindex`). Async — the existing source record is updated in place once indexing finishes. Auth: app-token mode OR B2B mode with an explicit `appId`. Errors: 401/403 wrong auth; 404 unknown `appId` or `urlId`. Related: get `urlId` from `ethora-sources-site-list-v2`; `ethora-sources-site-reindex-v2-wait` blocks until done.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the URL belongs to. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
| urlId | string | yes | Id of a previously crawled URL record. Get it from `ethora-sources-site-list-v2`. |
No output schema declared.
No examples provided.
ethora-sources-site-reindex-v2-wait ~255
Re-crawl and re-embed a previously crawled URL and block until the server finishes — a single-call, long-timeout variant of `ethora-sources-site-reindex-v2` (same refresh effect). Returns `{ done: true, durationMs, result }`. Auth: app-token mode OR B2B mode with an explicit `appId`. Errors: 401/403 wrong auth; 404 unknown `appId` or `urlId`; 504/timeout if it takes longer than `timeoutMs` (the job may still complete server-side). Related: get `urlId` from `ethora-sources-site-list-v2`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the URL belongs to. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
| timeoutMs | integer | — | How long to wait for the reindex to finish, in milliseconds. Default 120000. Caps at 600000 (10 min). |
| urlId | string | yes | Id of a previously crawled URL record. Get it from `ethora-sources-site-list-v2`. |
No output schema declared.
No examples provided.
ethora-sources-site-tags-update-v2 ~241
Set the RAG retrieval tags on a crawled website source — replaces the source's tag set with the provided `tags` array (not additive; pass `[]` to clear all). Tags let the bot's `ragTags` narrow retrieval. Auth: app-token mode OR B2B mode with an explicit `appId`. Errors: 401/403 wrong auth; 404 unknown `appId` or `sourceId`. Related: get `sourceId` from `ethora-sources-site-list-v2`; doc equivalent is `ethora-sources-docs-tags-update-v2`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the source belongs to. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
| sourceId | string | yes | Id of the crawled site source to tag. Get it from `ethora-sources-site-list-v2`. |
| tags | array | yes | The complete desired tag set for this source (replaces any existing tags). Up to 50 tags; pass `[]` to clear all. |
No output schema declared.
No examples provided.
ethora-status ~78
Report the current Ethora MCP session state: configured API URL, active auth mode, which credentials are present (booleans like `hasAppJwt` — values never echoed), and the selected appId/agentId. Auth: none required. Errors: effectively none. Related: `ethora-doctor` for an active connectivity check.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
ethora-user-login ~173
Authenticate as an existing Ethora user with email + password. Stores the user session token in this MCP session and unlocks user-auth tools (`ethora-app-list`, `ethora-files-*`, `ethora-wallet-*`). Auth: user-auth mode (`ethora-auth-use-user` first) and a configured `appJwt`. Errors: 401/403 bad credentials; 404 email not registered; 429 per-IP rate limit — retry with backoff.
| Name | Type | Req | Description |
|---|---|---|---|
| string | yes | User's registered email address (RFC 5322). Must match an account created via `ethora-user-register` and verified via the link sent to that address. | |
| password | string | yes | Plain-text password the user set during registration. Sent over TLS to the Ethora API; never echoed back or logged. |
No output schema declared.
No examples provided.
ethora-user-register Ethora registration ~216
Register a new Ethora end-user account by email + first/last name. Creates a pending user record and triggers a verification email — the user must click the link before `ethora-user-login` succeeds. Auth: user-auth mode and a configured `appJwt` (tells the server which app the user belongs to). Errors: 401 no `appJwt`; 422 email already registered, invalid names, or invalid `appJwt`. Related: bulk provisioning uses `ethora-users-batch-create-v2`.
| Name | Type | Req | Description |
|---|---|---|---|
| string | yes | Email address for the new user. Must be RFC-5322 valid and not already registered within this app. The user will receive a verification link they must click before login works. | |
| firstName | string | yes | First name shown in the user's profile and message attributions across chat rooms and the app UI. |
| lastName | string | yes | Last name shown in the user's profile. Required by the server; do not omit unless your Ethora deployment explicitly accepts empty strings. |
No output schema declared.
No examples provided.
ethora-users-batch-create-v2 ~215
Provision many Ethora users (1–100) in one asynchronous batch job — the bulk equivalent of `ethora-user-register`. Enqueues a background job (HTTP 202); the job reports per-user conflicts rather than failing the whole batch. Returns `{ jobId, statusUrl }`. Auth: B2B mode (`ethora-auth-use-b2b` + a configured `b2bToken`). Errors: 401/403 not in B2B mode; 422 `usersList` validation. Related: track with `ethora-wait-users-batch-job-v2`.
| Name | Type | Req | Description |
|---|---|---|---|
| bypassEmailConfirmation | boolean | — | If true, created users skip email verification and are immediately usable. If false/omitted, each user receives a verification link. |
| timeoutMs | integer | — | HTTP timeout for the job-creation request (not the job itself), in milliseconds. Default 30000. |
| usersList | array | yes | The users to create, 1–100 per batch. |
No output schema declared.
No examples provided.
ethora-users-batch-job-v2 ~179
Fetch the current status and per-user results of a users batch job by `jobId` (one-shot, no polling). Returns the job object with its `state` (pending/running/completed/failed) and per-user outcomes. Auth: B2B mode (`ethora-auth-use-b2b` + a configured `b2bToken`) — must match the auth used to create the job. Errors: 401/403 not in B2B mode; 404 unknown `jobId`. Related: `ethora-wait-users-batch-job-v2` for a blocking wait.
| Name | Type | Req | Description |
|---|---|---|---|
| jobId | string | yes | Job id returned by `ethora-users-batch-create-v2`. |
| timeoutMs | integer | — | HTTP timeout for this status request, in milliseconds. Default 10000. |
No output schema declared.
No examples provided.
ethora-wait-broadcast-job-v2 ~242
Block until a broadcast job reaches a terminal state (`completed` or `failed`) or until `timeoutMs` — read-only polling wrapper around `ethora-chats-broadcast-job-v2`. Returns `{ done, state, job }`, or `{ done: false, reason: "timeout" }` on timeout. Auth: app-token mode OR B2B mode with an explicit `appId` — must match the auth used to enqueue the job. Errors: 401/403 wrong auth; 404 unknown `jobId`.
| Name | Type | Req | Description |
|---|---|---|---|
| appId | string | — | 24-char hex appId the job belongs to. Required in B2B mode unless already set via `ethora-app-select`; ignored in app-token mode. |
| intervalMs | integer | — | Delay between status checks, in milliseconds. Default 1000. Lower = more responsive but more API calls. |
| jobId | string | yes | Job id returned by `ethora-chats-broadcast-v2`. |
| timeoutMs | integer | — | Maximum time to wait, in milliseconds. Default 60000. Caps at 300000 (5 min). |
No output schema declared.
No examples provided.
ethora-wait-users-batch-job-v2 ~204
Block until a users batch job reaches a terminal state (`completed` or `failed`) or `timeoutMs` — read-only polling wrapper around `ethora-users-batch-job-v2`. Returns `{ done, state, job }`, or `{ done: false, reason: "timeout" }` on timeout. Auth: B2B mode (`ethora-auth-use-b2b` + a configured `b2bToken`) — must match the auth used to create the job. Errors: 401/403 not in B2B mode; 404 unknown `jobId`.
| Name | Type | Req | Description |
|---|---|---|---|
| intervalMs | integer | — | Delay between status checks, in milliseconds. Default 1000. |
| jobId | string | yes | Job id returned by `ethora-users-batch-create-v2`. |
| timeoutMs | integer | — | Maximum time to wait, in milliseconds. Default 60000. Caps at 300000 (5 min). |
No output schema declared.
No examples provided.
ethora-wallet-get-balance ~53
Read the authenticated user's on-chain ERC-20 wallet balance(s). Auth: user-auth (log in first). Errors: 401 not logged in; 503 wallet RPC unreachable — retry with backoff.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.