INDIVIDUAL MCP TOOL
prepare_create_auction_calldata
Builds an unsigned transaction blueprint for creating a borrow auction — you post collateral and ask lenders to compete to lend against it — including the prerequisite collateral approval.
LIVE ENDPOINT
https://mcp.thegavel.io/mcp
Connect to this endpoint to inspect the live schema for prepare_create_auction_calldata and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.aletheia-mcp]
url = "https://mcp.thegavel.io/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"aletheia-mcp": {
"type": "http",
"url": "https://mcp.thegavel.io/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: aletheia-mcp
Remote MCP URL: https://mcp.thegavel.io/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"aletheia-mcp": {
"url": "https://mcp.thegavel.io/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"aletheia-mcp": {
"type": "http",
"url": "https://mcp.thegavel.io/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "aletheia-mcp",
"transport": "streamable-http",
"url": "https://mcp.thegavel.io/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_yield_curve— Returns the current fitted Gavel yield curve for the requested collateral/loan pair.get_protocol_reference— Returns the Gavel Protocol's complete on-chain reference data for the requested network: contract addresses, supported tokens (collateral and loan), key function signatures, operational conventions (like the Position NFT tokenId formula), and Etherscan/ABI references.check_wallet_status— Returns a structured readiness report for the given wallet address: native ETH balance for gas, relevant ERC-20 balances (USDC, USDT, WBTC), current allowances against the Gavel LoanProtocol and ListingService, and a precomputed list of blockers (what's stopping the wallet from placing bids or creating auctions).find_auctions_matching_criteria— Returns Gavel auctions filtered by the criteria you supply.list_fiat_onramps— Returns a catalog of fiat-to-USDC onramps that deliver native USDC on the requested chain.list_wallet_options— Returns a catalog of self-custody wallet apps compatible with Gavel (i.e., that support Arbitrum One).get_user_positions— Returns every Gavel position an address holds — as borrower, as winning lender, or as a bidder on an auction that has not closed.get_loan_status— Returns the current state of a single Gavel loan and what action, if any, is available to whom.