com.forgetreasury/treasury
Official9 toolsForge Treasury
Non-custodial USDC yield vaults on Base mainnet with 9 MCP tools for AI agent treasury.
Non-custodial USDC yield vaults on Base blockchain for AI agent treasury management.
Captured live from the server via tools/list.
deposit
Deposit USDC into a Forge Treasury vault on Base. Returns calldata for the agent wallet to sign. The agent must approve USDC to the vault contract first. Mints yield-bearing fUSDC shares. Conservative deposits Core only (single leg). Balanced returns two legs (50% Core / 50% Middle). Aggressive is not live. Gas: Core 4M, Middle 6M+ on mainnet.
Parameters (3)
- amountstringrequired
USDC amount to deposit (human-readable, e.g. "1000" for 1000 USDC)
- agentAddressstringrequired
Agent wallet address that will receive vault shares
- profilestring
Strategy id (legacy "profile" name). conservative → Core vault. balanced → Core + Middle legs (50/50). aggressive → STRATEGY_NOT_LIVE. Defaults to "conservative".
withdraw
Withdraw from the Forge Treasury vault by redeeming shares. Returns calldata for the agent wallet. A 15% performance fee may apply on profits above the high water mark.
Parameters (2)
- sharesstringrequired
Vault share amount to redeem (raw uint256 string from get_balance)
- agentAddressstringrequired
Agent wallet address (owner of shares)
get_balance
Get an agent's Forge vault balance: shares held and equivalent USDC value. Read-only, no transaction needed.
Parameters (1)
- agentAddressstringrequired
Agent wallet address
get_current_apy
Get the blended target APY for a Forge profile: base USDC yield + FORGE boost. Returns structured JSON with profile metadata, target allocation by adapter, and a disclaimer. Format: "X% USDC + Y% FORGE (blended target)". APY is a blended target across conservative allocation weights; not a guarantee. Sepolia uses MockYieldAdapter until mainnet adapters are live. Conservative deposits Core only (single leg). Balanced returns two legs (50% Core / 50% Middle). Aggressive is not live. Gas: Core 4M, Middle 6M+ on mainnet.
Parameters (2)
- agentAddressstring
Optional agent address for personalized boost calculation
- profilestring
Risk profile. MVP: "conservative" only. balanced/aggressive return PROFILE_NOT_LIVE. Defaults to "conservative".
simulate_deposit
Project expected returns for a USDC deposit over 30, 90, and 365 days using the blended target APY. Use for agent reasoning before depositing. APY is a blended target across conservative allocation weights; not a guarantee. Sepolia uses MockYieldAdapter until mainnet adapters are live.
Parameters (2)
- amountstringrequired
USDC amount to simulate (e.g. "10000")
- profilestring
Risk profile to simulate. MVP: "conservative" only. Defaults to "conservative". balanced/aggressive return PROFILE_NOT_LIVE.
get_vault_stats
Get live Forge vault TVL on Base (conservative profile in MVP). Read-only.
No parameters.
list_profiles
List Forge vaults (Core/Middle/Infra) and agent strategies (Conservative/Balanced/Aggressive). Mainnet: Core and Middle vaults live; conservative and balanced strategies live.
No parameters.
get_forge_rewards
[Advanced] Get claimable $FORGE reward balance for an agent from the weekly emissions distributor.
Parameters (1)
- agentAddressstringrequired
Agent wallet address
claim_forge
[Advanced] Build calldata to claim weekly $FORGE rewards. Proof is fetched from forgetreasury.com/rewards when omitted.
Parameters (4)
- epochstringrequired
Reward epoch number
- agentAddressstringrequired
Agent wallet address
- amountstring
FORGE amount to claim (raw wei string). Optional if manifest has allocation.
- proofarray
Merkle proof array (bytes32 hex strings). Optional — auto-fetched from manifest.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"treasury": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.forgetreasury.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.