_ registry / mcp streamable-http · checked 1h ago

commodities.sh

https://api.commodities.sh

Registry code: 5739d3aef547fd75

api record

Primary-source commodities MCP. Start with catalog.list (free) to discover instrument codes, then price.latest / inventory.get / positioning.get for observations. Use snapshot.get for a sector bundle and decision.get for deterministic signal packs. calendar.get (free) lists EIA/USDA/CFTC release cadence. Paid tools settle via x402 USDC on Base.

endpoint
https://api.commodities.sh/api/mcp
protocol
streamable-http ·2024-11-05
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
99.3%

90 days 99.3%· all time 99.7%

latency
239ms

last good check

priced tools
1

of 11 tools

_ answered our checks, 90 days 146 checks · signed record
_ what it is for
used for
  • get latest commodity prices
  • get eia petroleum inventories
  • get cftc positioning data
  • compute commodity spreads
  • list commodity release calendar
takes → gives
text → data
tools
11 reads
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ paid on base 30 days

Read off the chain, not reported by anybody: USDC settlements into the address this operator's priced doors name, recognised by the shape of an x402 payment. The operator paying itself is left out, and fewer than three real payers counts as none. The address stands behind 2 doors on this origin, so this is the operator's figure. How it is counted.

payers
2

distinct, not the operator

settlements
3

last 2026-09-26

received
0 USDC

thin, concentrated

_ what it can do 11 tools
1 paid2 open 8 never probed 3 of 11 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • inventory.get reads 0.03 USDC paid 11h ago

    Fetch EIA weekly petroleum inventory levels. Omit series to list all latest inventory points, or pass a series key to get week-over-week change, vs-5y deviation, and a surprise label for that series.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "series": {
          "type": "string",
          "description": "Optional EIA inventory series key. Omit to return all latest inventory rows. Example: crude_stocks."
        }
      },
      "additionalProperties": false
    }
    arguments 10 lines
  • calendar.get reads open 11h ago

    List EIA, USDA, and CFTC release calendar entries with cadence, typical Eastern time, and next-hint notes. Free discovery tool — call before scheduling agents around inventory or WASDE prints.

    mcp-tool

    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
    arguments 5 lines
  • catalog.list reads open 11h ago

    List every commodity instrument in the catalog with sector, unit, primary source, and freshness metadata. Call this first to discover valid codes before price.latest or inventory.get. Free discovery tool — no payment required.

    mcp-tool

    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
    arguments 5 lines
  • price.latest reads unknown never probed

    Return the latest cash/fundies observation for one instrument code. Use catalog.list to discover codes such as CL, GC, or ZC. Response follows the shared observation contract with provenance and license tags.

    mcp-tool

    {
      "type": "object",
      "required": [
        "code"
      ],
      "properties": {
        "code": {
          "type": "string",
          "description": "Instrument code from catalog.list. Example: CL, GC, ZC."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • snapshot.get reads unknown never probed

    Build a sector snapshot bundling prices, inventories, spreads, and related fundies for energy, metals, ags, or all sectors. Prefer this over calling many single-observation tools when you need a full sector picture.

    mcp-tool

    {
      "type": "object",
      "required": [
        "sector"
      ],
      "properties": {
        "sector": {
          "enum": [
            "energy",
            "metals",
            "ags",
            "all"
          ],
          "type": "string",
          "description": "Sector to snapshot. Use all to receive energy, metals, and ags together."
        }
      },
      "additionalProperties": false
    }
    arguments 19 lines
  • fx.latest reads unknown never probed

    Return the latest FX rate observation for a pair or FRED FX series. Useful alongside commodity prices when converting cash values across currencies.

    mcp-tool

    {
      "type": "object",
      "required": [
        "pair"
      ],
      "properties": {
        "pair": {
          "type": "string",
          "description": "FX pair or series id. Example: EURUSD, USDCNY, DTWEXBGS."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • fundamentals.get reads unknown never probed

    Fetch a fundamentals document: USDA WASDE, crop progress, export sales, or USGS mineral summaries. Choose kind based on the ags/metals question you are answering.

    mcp-tool

    {
      "type": "object",
      "required": [
        "kind"
      ],
      "properties": {
        "kind": {
          "enum": [
            "wasde",
            "crop_progress",
            "export_sales",
            "usgs"
          ],
          "type": "string",
          "description": "Fundamentals report kind. Example: wasde for World Agricultural Supply and Demand Estimates."
        }
      },
      "additionalProperties": false
    }
    arguments 19 lines
  • decision.get reads unknown never probed

    Build a deterministic decision pack for energy, metals, ags, or all sectors. Returns method, signals with direction/rationale, an embedded snapshot, and a disclaimer — no ML model, rule-based only.

    mcp-tool

    {
      "type": "object",
      "required": [
        "sector"
      ],
      "properties": {
        "sector": {
          "enum": [
            "energy",
            "metals",
            "ags",
            "all"
          ],
          "type": "string",
          "description": "Sector for the decision pack. Use all to bundle every sector."
        }
      },
      "additionalProperties": false
    }
    arguments 19 lines
  • positioning.get reads unknown never probed

    Return the latest CFTC Commitments of Traders managed-money positioning for an instrument code. Includes long, short, net, and week-over-week net change with source URL.

    mcp-tool

    {
      "type": "object",
      "required": [
        "code"
      ],
      "properties": {
        "code": {
          "type": "string",
          "description": "Instrument code from catalog.list. Example: CL, NG, GC, ZC."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • spread.get reads unknown never probed

    Compute a derived spread observation: 3-2-1 crack, soybean crush, WTI-Brent basis, or calendar (calendar requires licensed curve data and may return available=false). Prefer crack/crush/basis for live derived values with formula and inputs.

    mcp-tool

    {
      "type": "object",
      "required": [
        "type"
      ],
      "properties": {
        "root": {
          "type": "string",
          "description": "Optional root symbol for calendar spreads. Example: CL. Ignored for crack/crush/basis."
        },
        "type": {
          "enum": [
            "crack",
            "crush",
            "basis",
            "calendar"
          ],
          "type": "string",
          "description": "Spread type to compute. Example: crack for 3-2-1 gasoline/distillate crack."
        }
      },
      "additionalProperties": false
    }
    arguments 23 lines
  • price.history reads unknown never probed

    Return historical observations for an instrument code (up to 500 points). Use after price.latest when you need a short time series for the same code.

    mcp-tool

    {
      "type": "object",
      "required": [
        "code"
      ],
      "properties": {
        "code": {
          "type": "string",
          "description": "Instrument code from catalog.list. Example: CL, GC, ZC."
        },
        "limit": {
          "type": "number",
          "description": "Number of historical points to return. Max 500, default 60."
        }
      },
      "additionalProperties": false
    }
    arguments 17 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/5739d3aef547fd75/badge.svg)](https://brick.blue/agent/5739d3aef547fd75)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.

_ also on commodities.sh 1 entry

Served from the same domain, which is what was measured. Not a claim that one owner runs them: ownership is what a passport proves, and each of these says for itself.