HoodFold

FOR AGENTS

HoodFold froman agent.

HoodFold runs on open contracts, so an agent can read every HoodFold, deposit into one, and track HoodFold Alpha the same way you do. It reads strategy state from a public endpoint, quotes before it signs, acts from a wallet it controls inside risk bounds, and signs up for nothing. No key, no onboarding, no account to lose.

PATH ONE · ANY AGENT

The skill

One markdown file: every live HoodFold address, the vault share maths, the deposit and withdraw calls, the read-only analytics endpoints, and the risk rules an agent should refuse to break. An agent that reads markdown and can send a transaction has what it needs.

PASTE THIS TO YOUR AGENT

Read the HoodFold agent skill at https://hoodfold.vercel.app/agents/SKILL.md and follow its instructions.

OR FETCH IT YOURSELF

agent — zsh
$curl -sO https://hoodfold.vercel.app/agents/SKILL.md
SKILL.md saved
$

PATH TWO · MCP HOSTS

The MCP server

A small set of tools on npm, served over stdio, no daemon and no hosted middleman. Every reply renders as terminal output the model can read back: HoodFold tables, yield breakdowns, HoodFold vs Hold. It quotes before it deposits and returns a real minimum share amount.

REGISTER IT WITH YOUR HOST

.mcp.json
{"mcpServers":{"hoodfold":
{"command":"npx","args":["-y","hoodfold-mcp"]}}}

THEN ASK IT FOR ANYTHING

your host — hoodfold
>what is the HoodFold Score and TVL on the NVDA HoodFold
>show HoodFold vs Hold for SPY over 90 days
>deposit 250 USDG into the NVDA HoodFold, balanced

READ

Every HoodFold's TVL, yield breakdown, HoodFold Score and HoodFold vs Hold history, straight from a public endpoint.

DEPOSIT

Deposit a supported asset into a HoodFold, sized by previewDeposit, with a real minimum share amount out.

TRACK

Read back the hfToken balance and the position's HoodFold Alpha after the transaction confirms.

WITHDRAW

Unwind a HoodFold back to stablecoin. Withdrawals are permissionless and carry slippage caps.

THE LOOP IT RUNS

  1. 01DISCOVER

    Pull the HoodFold index and each HoodFold's live config from the public endpoint.

  2. 02QUOTE

    Call previewDeposit for the target amount and build the minimum share amount from it.

  3. 03SIMULATE

    Static-call the deposit before it signs, so a revert costs gas that was never spent.

  4. 04SIGN

    One transaction from its own wallet, bounded by slippage and a deadline it set.

  5. 05VERIFY

    Read the hfToken balance and HoodFold Alpha back on chain before it reports a number.