Crypto social intelligence from X and Telegram, plus the Elfa Auto condition engine
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Elfa MCP.
api_statusCheck API key tier, credit usage and remaining requests. Also confirms the API is reachable.
mentionsSocial mentions from X and Telegram. mode=top ranks a ticker's mentions by engagement, mode=search filters by keyword or account, mode=news returns the token news feed, which is X posts from accounts tagged as news sources rather than articles from news outlets.
trendingWhat is gaining social attention. scope=tokens for tickers, scope=contracts_twitter or scope=contracts_telegram for contract addresses.
narrativesWritten narrative analysis with source links. scope=market extracts market-wide narratives, scope=keywords summarises events for specific keywords.
account_statsSmart follower and engagement stats for an X account. Legacy: it still works, but will be removed on 28 October 2026.
market_chatAsk for written market analysis. Supports conversational chat, macro overview, quick summary, token intro, token analysis and account analysis.
Model Context Protocol server for the Elfa API β crypto social intelligence from X and Telegram, plus Auto, a condition engine that watches the market and fires an action when your conditions are met.
Works with any MCP client: Claude Code, Claude Desktop, Cursor, VS Code, Codex, and anything else that speaks MCP.
Get an API key at dev.elfa.ai. No install step β npx fetches the server on demand.
One click
Claude Desktop
Download elfa-mcp-<version>.mcpb from the latest release and open it. Claude Desktop installs it, prompts for your API key, and keeps it updated. Nothing else to configure.
Claude Code
Cursor, VS Code, Claude Desktop, and other clients
VS Code uses "servers" instead of "mcpServers". Everything else is the same.
Ask "what's trending in crypto right now?" to confirm it works.
| Variable | Required | Purpose |
|---|---|---|
ELFA_API_KEY | yes | Authenticates every request |
ELFA_TIMEOUT | no | Request timeout in ms, default 120000 |
ELFA_RETRIES | no | Retries on failure, default 0 |
ELFA_MCP_MAX_RESPONSE_CHARS | no | Response size ceiling, default 60000 |
ELFA_EXTRA_HEADERS | no | JSON object of extra headers to send upstream, for proxies and non-production environments |
The timeout is high and retries are off on purpose. The interpretation endpoints are LLM-backed and can take over a minute, and they cost credits per attempt, so a silent retry would bill you again for a call you never saw. Raise ELFA_RETRIES only if you are calling the cheap measurement endpoints.
Some MCP clients apply their own timeout, often around 60 seconds. narratives and market_chat can exceed that; the request still completes and is still charged, even if the client gives up first.
11 tools, mapped to every documented /v2 operation.
| Tool | Mode | Cost | What it does |
|---|---|---|---|
api_status | read | Free | Check API key tier, credit usage and remaining requests. Also confirms the API is reachable. |
mentions | read | 1 per call | Social mentions from X and Telegram. mode=top ranks a ticker's mentions by engagement, mode=search filters by keyword or account, mode=news returns the token news feed, which is X posts from accounts tagged as news sources rather than articles from news outlets. |
trending | read | 1 per call | What is gaining social attention. scope=tokens for tickers, scope=contracts_twitter or scope=contracts_telegram for contract addresses. |
narratives | read | 5 per call | Written narrative analysis with source links. scope=market extracts market-wide narratives, scope=keywords summarises events for specific keywords. |
account_stats | read | 1 per call | Smart follower and engagement stats for an X account. Legacy: it still works, but will be removed on 28 October 2026. |
market_chat | read | Varies by speed | Ask for written market analysis. Supports conversational chat, macro overview, quick summary, token intro, token analysis and account analysis. |
auto_build | read | 1 plus LLM usage | Turn a plain-language monitoring request into an EQL query. Returns a draft to validate and activate, it does not activate anything itself. |
auto_validate | read | Free | Check EQL syntax and get a cost estimate before activating, or check that a symbol has market data on a venue. |
auto_query | read | Free | Read side of Auto: list queries, poll one query, and read its executions and LLM sessions. |
auto_query_write | write | 5 plus LLM usage to create, free to cancel or delete | Activate, cancel or delete an Auto query. Activated queries run unattended and fire their action when conditions are met. |
auto_draft | write | Free, except convert which costs the same as creating a query | Manage inactive Auto drafts. Drafts do not evaluate until converted into an active query. |
Not exposed as tools:
chat-stream-v2 β A tool call returns one result, so streaming adds nothing. market_chat covers the same analysis.auto-stream-queries-v2 β Long lived streams have no tool equivalent. Poll with auto_query.auto-stream-query-v2 β Long lived streams have no tool equivalent. Poll with auto_query.Some tools depend on the plan: today market_chat, which needs a higher-tier plan than the free one. At startup (stdio) or per request (HTTP, cached for a minute per key), the server reads the key's scopes from /v2/key-status. A tool the plan doesn't include stays listed, but its description says it needs a higher-tier plan, and calling it returns the upgrade link without calling the API or spending credits. If the scopes can't be read within 3 seconds, every tool is listed as usual and the API decides.
Streaming endpoints stay available through the SDKs for applications that can consume SSE.
The tools deliberately do not inherit every API default, because an agent pays for verbosity in context.
| API | Here | Why | |
|---|---|---|---|
pageSize | 10 to 50 depending on endpoint, max 100 | 10 | Page through rather than pull everything |
speed on chat | expert | fast | Cheaper by default, ask for expert when depth matters |
| Mention fields | full record | high signal fields | Pass verbosity: "detailed" for the rest |
| Large responses | returned whole | trimmed to fit, with a note | Keeps one call from filling the context window |
Every value is still settable per call, and pageSize accepts up to 100.
Auto queries run unattended. Once armed, a query keeps evaluating and fires its action without asking again.
The flow is three steps:
auto_build β describe what to watch in plain language, get EQL backauto_validate β check the syntax and get the credit costauto_query_write β activate itActions can notify you, call a webhook, message a Telegram bot, or run an LLM analysis.
There is no push channel over MCP. Poll auto_query with method=get, and wait for the returned pollAfterSeconds between calls.
The same server runs over Streamable HTTP for hosted deployments:
It is stateless β no sessions, one server instance per request, safe behind a load balancer. Credentials come from the x-elfa-api-key request header, falling back to the environment, or from an OAuth sign-in (see below).
DNS rebinding protection is on by default. The server accepts only the loopback names it binds β localhost:PORT and 127.0.0.1:PORT β which covers the local run above and nothing else. Any deployment that answers on a different Host must list the values it serves:
That includes a public domain, a reverse proxy, and a container that maps the port to a different one than the server binds. A Host the list does not cover is rejected with 403.
| Variable | Required | Purpose |
|---|---|---|
ELFA_MCP_TRANSPORT | no | http to serve over Streamable HTTP, default stdio |
ELFA_MCP_HOST | no | Bind address, default 127.0.0.1 |
ELFA_MCP_PORT | no | Bind port, default 3000 |
ELFA_MCP_ALLOWED_HOSTS | no | Comma separated Host allowlist, defaults to the loopback names bound |
ELFA_MCP_ALLOWED_ORIGINS | no | Comma separated Origin allowlist |
Set ELFA_MCP_ALLOWED_ORIGINS as well when browsers call the server directly. It complements the host allowlist rather than replacing it: a rebound request is same origin, so it carries no Origin header for that list to check, and the Host header is the only one still naming the attacker's domain.
A hosted server can let clients sign in through a browser instead of sending an API key. Set ELFA_MCP_AUTH=oauth and the server becomes an OAuth resource server under the MCP authorization spec:
401 and a WWW-Authenticate challenge./.well-known/oauth-protected-resource/mcp.Authorization: Bearer <token>.Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-11)<a href="https://allmcps.com/mcp/mcp-11"><img src="https://allmcps.com/api/badge/mcp-11?style=directory" alt="Elfa MCP on AllMCPs" /></a>