Back to Discover

tereno-mcp

connector

tereno-xyz

Check a Base contract, transaction or web page before you act. Free pricing, paid per call in USDC.

View on GitHub
0 starsSynced Aug 4, 2026

Install to Claude Code

/plugin marketplace add tereno-xyz/tereno-mcp

README

Tereno

tereno-mcp

๐Ÿ›ก๏ธ Check before you act โ€” an MCP server for Base, over x402

Ask what it costs before you pay for it. Free catalog, pricing and receipt tools work with no wallet and no signup; paid answers settle per call in USDC, and reusing an answer another agent already paid for costs less.


npm version MCP Base x402

license no dependencies free tier

npx -y tereno-mcp

โšก Why this exists

An agent that reads a contract, signs a transaction or scrapes a page is acting on information it cannot verify. Most tools answer what something is. None of them tell you how long that answer stays true.

tereno-mcp puts Tereno inside any MCP client. Every paid answer comes back with the evidence behind it, the limits of that evidence, and the block it stops being valid at.

  • No API key, no signup. The agent's wallet is the identity.
  • Price before payment. tereno_price tells you the cost and whether the answer already exists, without a wallet and without committing to anything.
  • Cheaper when shared. Deterministic answers are reused across agents: the first caller pays to compute, everyone after pays the reuse price.

๐Ÿš€ Install

Add it to any MCP client โ€” Claude Desktop, Claude Code, Cursor, Cline, Windsurf:

{
  "mcpServers": {
    "tereno": {
      "command": "npx",
      "args": ["-y", "tereno-mcp"]
    }
  }
}

Restart the client. Nothing else to configure โ€” the free tools work immediately.

๐Ÿ†“ Free, no wallet needed

ToolThe question it answers
๐Ÿ“– tereno_catalogWhat can Tereno answer, what does it cost, how long does each answer stay valid?
๐Ÿท๏ธ tereno_priceWhat would this exact call cost right now โ€” and does the answer already exist?
๐Ÿงพ tereno_receiptWhat did a settled call actually charge: tier, list price, credit applied, price paid?

tereno_price is the one worth knowing about. It names the reuse tier out loud:

hit      another agent already paid to compute this and it is still fresh
partial  the durable half survived; only the expired part is recomputed
miss     nothing to reuse โ€” this call computes it, and the next asker pays less

๐Ÿ’ณ Paid per call

ToolPriceThe question it answers
๐Ÿšฆ transaction_intent_guard$0.005Is this safe to sign? Simulation, gas, balance and allowance deltas, unlimited-approval flags
๐Ÿ›ก๏ธ contract_guard$0.001โ€“3Is this contract safe to interact with? (code, proxy, pause)
๐Ÿ•ต๏ธ contract_change$0.001โ€“2Did it change since last look? (rug-pull-after-audit detector)
๐Ÿช™ token_metadata$0.001โ€“3What token is this, really? (name, symbol, decimals, supply)
๐Ÿงฌ contract_interface$0.001โ€“2ERC-20? NFT? Proxy? One bounded probe
โ›ฝ chain_snapshot$0.001โ€“2Latest Base block, base fee and suggested gas, zero parameters
๐Ÿ“„ web_compile$0.001โ€“5Public URL โ†’ bounded Markdown with resolved links, citations and a reusable artifact
๐Ÿ”Ž evidence_artifact$0.001โ€“3Can this public artifact be reused? Provenance, field validity, recomputation input
๐Ÿค demand_pledgefreeName a capability you would pay for. Credit only after the same wallet pays for it later

Calling a paid tool returns a 402 carrying the payment challenge in error.data.paymentRequired. Sign it and retry with a PAYMENT-SIGNATURE header. If your agent already has an x402 wallet, that retry is the normal flow and this package never touches a private key.

๐Ÿ”’ transaction_intent_guard is never cached, shared or resold. An unsigned transaction is intent, and it stays with the wallet that paid for it.

โš™๏ธ Configuration

EnvDefaultPurpose
TERENO_WALLETโ€”Base address announced before payment, so a challenge can be bound to the wallet that will settle it. Optional.
TERENO_BASE_URLhttps://www.tereno.xyzPoint at another Tereno deployment.
TERENO_TIMEOUT_MS45000Upstream request timeout.

๐Ÿ” What this package does and does not do

It is a stdio transport in front of the hosted endpoint at /api/mcp. Messages are forwarded verbatim, so the tool list, the prices and the payment challenge all come from the same place an HTTP agent sees โ€” and this package needs no release when a capability changes.

The one thing it translates is payment: over HTTP the challenge arrives in a response header, and stdio has no headers, so it is folded into the JSON-RPC error payload where a client can still reach it.

No private key is ever read, stored or transmitted. There are no dependencies, and the whole thing is one readable file โ€” read it before you let it run on your machine.

If your client supports remote MCP servers, skip this package and point it straight at https://www.tereno.xyz/api/mcp.

๐ŸŒฑ How it stays cheap โ€” the cooperative layer

Tereno is a shared-cache coordination layer, not just an API. The first agent to pay for a given piece of verified work seeds it for the whole network; every later agent that reuses that answer pays less, and the seeder earns a small, non-transferable credit that discounts its own future calls.

Safety is a public good with a private cost. By making the first computation earn from every reuse, the network turns "I paid to check this contract" into "I lowered the price of checking it for everyone, and my own checks got cheaper."

The honest fine print: rewards are non-transferable credits, capped per artifact. They fund your agent's budget, they are not yield.

Discovery, scoring, reputation, pricing and the global cache live in the closed Tereno backend. This server and its SDK (tereno-client) are the public, open interface to it.

๐Ÿค Support & community

  • ๐Ÿ’ฌ Questions / setup โ†’ Tereno Discord
  • ๐Ÿ› Bugs โ†’ issues ยท โš ๏ธ never paste private keys or .env
  • ๐Ÿ”’ Vulnerabilities โ†’ report privately

๐Ÿ”— Links

Live catalog ยท OpenAPI ยท MCP registry entry ยท plugin-tereno for ElizaOS ยท tereno-client SDK


tereno.xyz ยท Verdicts before signatures, for agents on Base.

Rendered live from tereno-xyz/tereno-mcp's GitHub README โ€” not stored, always reflects the source repo.

2 Install Methods

NameDescriptionCategorySource
npm packageInstall via npm (stdio transport)mcp-servertereno-mcp
streamable-http remoteHosted streamable-http endpointmcp-serverhttps://www.tereno.xyz/api/mcp

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet โ€” be the first to share an update.