eleeth-x402-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ELEETH_X402_KEY | Yes | Your Base wallet private key. Holds a little USDC and signs EIP-3009 USDC authorizations for each paid API call. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| x402_searchB | Web search for AI agents ($0.01 USDC/call). Returns titles, URLs, snippets. |
| x402_readA | Fetch any web page and return its clean article text ($0.01 USDC/call). |
| x402_chatB | AI chat completion ($0.02 USDC/call). |
| x402_imageB | AI image generation — returns a PNG image ($0.05 USDC/call). |
| x402_cryptoA | Live crypto price + 24h change in USD ($0.01 USDC/call). |
| x402_weatherA | Current conditions + today's forecast ($0.01 USDC/call). |
| x402_stockA | Stock quote ($0.01 USDC/call). |
| x402_fxA | Currency conversion; omit 'to' for the full table ($0.01 USDC/call). |
| x402_newsC | Latest news headlines ($0.01 USDC/call). |
| x402_dnsC | DNS records lookup ($0.01 USDC/call). |
| x402_waybackC | Closest archived snapshot of a URL from archive.org ($0.01 USDC/call). |
| x402_rssA | Fetch any RSS/Atom feed and return it as JSON ($0.01 USDC/call). |
| x402_summarizeB | AI summary of any article URL ($0.02 USDC/call). |
| x402_whoisB | Domain WHOIS via RDAP ($0.01 USDC/call). |
| x402_certsA | Discover subdomains from certificate-transparency logs ($0.01 USDC/call). |
| x402_seoB | Instant SEO audit of a URL with a score ($0.02 USDC/call). |
| x402_githubC | GitHub repo stats ($0.01 USDC/call). |
| x402_arxivB | Research paper search on arXiv ($0.01 USDC/call). |
| x402_wikiB | Wikipedia summary ($0.01 USDC/call). |
| x402_secB | SEC company financial facts ($0.01 USDC/call). |
| x402_feargreedB | Crypto Fear & Greed index ($0.01 USDC/call). |
| x402_holidaysB | Public holidays by country and year ($0.01 USDC/call). |
| x402_videoA | AI video generation: ~10s 720p clip from a prompt ($0.50 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'media'). |
| x402_ttsA | Text-to-speech: spoken-word mp3 ($0.25 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'media'). |
| x402_podcastA | AI podcast episode from a topic or a full script ($0.50 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'media'). |
| x402_translateA | Translate text into any language ($0.01 USDC/call). |
| x402_sentimentB | Sentiment analysis: positive / negative / neutral ($0.01 USDC/call). |
| x402_placesB | Find restaurants, shops, landmarks with coordinates ($0.01 USDC/call). |
| x402_qrcodeA | QR code generator — returns a PNG image ($0.01 USDC/call). |
| x402_screenshotA | Full-page website screenshot as PNG, rendered on dedicated hardware ($0.05 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'box'). |
| x402_renderA | Render a page in a real browser (JavaScript included), return clean text ($0.02 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'box'). |
| x402_ocrA | Image text extraction (OCR) ($0.02 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'box'). |
| x402_metadataA | Full EXIF/file metadata report as JSON ($0.02 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'box'). |
| x402_pdftextA | PDF text extraction ($0.02 USDC/call). ASYNC — returns a job ticket; poll with x402_poll_job (job_type 'box'). |
| x402_poll_jobA | Poll an async x402.eleeth.com job until it finishes (FREE — no payment). Use after x402_video, x402_tts, x402_podcast (job_type 'media') or x402_screenshot, x402_render, x402_ocr, x402_metadata, x402_pdftext (job_type 'box'). Returns the download URL when done. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 35 tools
Each tool targets a different service or output type, and the descriptions clearly specify what each returns. A few near-neighbor pairs exist (x402_read vs x402_render, x402_crypto vs x402_stock vs x402_feargreed), but they are distinguishable enough for an agent to select correctly.
All tools share the consistent x402_ prefix and snake_case format, which makes the set feel uniform at a glance. However, the suffix style is mixed: some are verbs (search, read, summarize, translate), some are nouns (weather, stock, wiki), and some are acronyms (dns, tts, ocr), so the pattern is predictable but not fully uniform.
35 tools is well above the 25+ threshold and represents a very large, sprawling surface for an agent to navigate. The server is essentially a multi-domain API bundle rather than a focused, well-scoped toolset, making selection difficult and the set feel heavy.
The async tools all have a matching x402_poll_job, so the main generation and processing workflows have no dead ends. The major categories are well covered, though minor gaps like job cancellation or output editing are missing, so agents can work around most limitations.