Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
X402_ORIGINNoWhich x402 server backs these tools — point this at a different x402-compatible server (or a local dev instance) if needed.https://x402-seller-0ay3.onrender.com
BUYER_PRIVATE_KEYNoEVM private key used to pay for tool calls. Unset = explain-only mode.

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

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
verify_factA

Verify or look up one specific, named fact: a Wikipedia topic's summary, a public GitHub repository's stats (stars, forks, last push), an npm package's version/license/downloads, a domain's DNS records, or a domain's registration status (RDAP). Give source (which kind of fact) and subject (the exact name to check). $0.005 per check via x402 (USDC on Base) — free to try: without a wallet configured, every call just explains the payment challenge instead of paying.

check_marketA

Check a crypto/DeFi/FX market data point: a token's USD price (crypto_price), total USDC circulating supply (usdc_supply), a ranked list of top stablecoins (top_stablecoins) or top DeFi protocols by TVL (top_protocols), one protocol's TVL (protocol_tvl) or one chain's total TVL (chain_tvl), DeFi yields — top overall (top_yields), filtered (yields), by chain (yields_by_chain), by token (yields_by_token), or one specific pool (yield_pool_detail) — or FX reference rates for a base currency (fx_rate). Give metric and whichever of coins/protocol/chain/symbol/pool/base/limit/min_tvl that metric needs. $0.005 per check for prices/TVL/stablecoins/FX, $0.05 for any yields metric (live DeFiLlama yield data).

check_chainA

Check live on-chain data for Base or Ethereum: current gas price (gas_price) or the latest known block — number, timestamp, hash (latest_block). Read live via a public RPC endpoint, no API key, no aggregator. $0.005 per check.

search_webA

Search or read the live web: structured Google results (search_google), semantic/intent search with an AI-generated answer (search_semantic), a public page's main content as clean Markdown (read_page), structured data extracted from a page per a JSON Schema you provide (extract_from_page), or current top Hacker News stories (trending_hn). Prices: $0.005 (search_google, read_page, trending_hn), $0.01 (search_semantic), $0.02 (extract_from_page).

ai_taskA

Run a Claude-powered text task on a piece of text: summarize into N sentences (summarize), translate to a target language (translate), classify into your own labels with a confidence score (classify), or extract structured JSON fields per a JSON Schema you provide (extract). Prices: $0.01 (summarize, translate, classify), $0.02 (extract).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.8/5.0

Scored across 5 tools

Disambiguation4/5

Each top-level tool targets a distinct data domain: facts, market data, on-chain data, web search, and AI text tasks. Minor overlap exists between search_web's extract_from_page and ai_task's extract, and between verify_fact and search_web for fact lookup, but the descriptions clarify the intended boundaries.

Naming Consistency4/5

All names use snake_case consistently, and four of five follow a verb_noun pattern (verify_fact, check_market, check_chain, search_web). ai_task breaks the verb-first convention, but the overall style remains predictable.

Tool Count5/5

Five tools is a well-scoped count for a multi-domain data toolkit, avoiding a sprawl of dozens of narrow endpoints. Each tool encapsulates a coherent category of operations and earns its place.

Completeness3/5

The set covers several common data needs (facts, crypto/DeFi/FX, basic chain data, web search, AI text tasks), but coverage within each area is shallow. Notable gaps include broader chain/transaction data, more fact sources, and richer web/API integrations, which could cause dead ends for some agent workflows.

Maintenance

ActivityMaintained
ResponsivenessNo issues