streamable-httpupdated 2mo ago
A pay-per-call data endpoint for AI agents: size-aware exit cost, depeg risk, and liquidity fragility for a token on Base. Not raw prices — computed, normalized, decision-grade intelligence an agent needs before it acts. Settled in USDC via x402 (Phase 2). Sourced on-chain, so the derived data is cleanly redistributable.
O que dá para fazer com AgentData Executable Liquidity / Exit Cost?
AgentData — Executable Liquidity (endpoint #1)
A pay-per-call data endpoint for AI agents: size-aware exit cost, depeg risk, and liquidity fragility for a token on Base. Not raw prices — computed, normalized, decision-grade intelligence an agent needs before it acts. Settled in USDC via x402 (Phase 2). Sourced on-chain, so the derived data is cleanly redistributable.
Strategy, values, and roadmap live in
CLAUDE.md. Decisions are logged indecisions/DECISION_LOG.mdanddecisions/adr/.
What it answers
"If I try to exit this position right now, what does it actually cost me, how much can I move before slippage blows past X bps, and how fragile is that liquidity?"
Three priced tiers (single source of truth in agentdata/api/pricing.py):
| Tier | Contents | Mainnet price |
|---|---|---|
| quote | best-route exit cost for one size | $0.008 |
| risk | exit cost + fragility (+ depeg for pegged assets) — default | $0.02 |
| deep | risk + multi-size exit-cost curve + max-size-before-cost ladder | $0.04 |
Testnet forces every price to $0 (the 402 flow is still exercised end-to-end).
Layout
src/agentdata/
config.py # env-driven; NETWORK_MODE testnet|mainnet (testnet default)
compute/ # the value-add: pure, deterministic, unit-tested math
amm.py # constant-product + Solidly stable curve, exit cost
routing.py # cheapest-venue selection
depeg.py # depeg deviation / dispersion / score
fragility.py # depth + concentration + convexity -> fragility score
tiers.py # quote / risk / deep orchestration
chain/ # on-chain Base reads (Aerodrome / Uniswap), web3 lazy
provider.py # FixturePoolProvider (default) + factory
onchain.py # OnChainPoolProvider (env-gated, no guessed addresses)
api/ # FastAPI JSON layer + pricing + stable schema
monitoring/ # uptime, latency p50/p95, error rate, calls per tier
tests/ # unittest (stdlib for compute; fastapi for api)
Run it (local, no funds, no network)
pip install -e . # or: pip install fastapi pydantic 'uvicorn[standard]'
uvicorn agentdata.api.app:app --reload
# then:
curl 'http://127.0.0.1:8000/v1/liquidity/exit-cost?token=WETH&size=10&tier=risk'
curl 'http://127.0.0.1:8000/pricing'
curl 'http://127.0.0.1:8000/metrics'
Defaults: NETWORK_MODE=testnet, POOL_SOURCE=fixture (deterministic demo pools
WETH, THIN, USDX). See .env.example.
Test
# compute core needs no dependencies:
PYTHONPATH=src python -m unittest discover -s tests
Status
- Phase 1 (local endpoint): done. compute + chain seam + API + monitoring, 42 tests green.
- Phase 2 (x402 testnet): next. Payment middleware in front of the API, free testnet facilitator on Base Sepolia. No real USDC; mainnet is an escalated human decision (CLAUDE.md §0/§14).
- On-chain mode requires a verified pool registry before use (ADR-001) — the code refuses to run on guessed contract addresses rather than fake data.
Instalação
Adicione AgentData Executable Liquidity / Exit Cost ao seu cliente. Escolha o que você usa.
claude mcp add --transport http agentdata-executable-liquidity-exit-cost https://agentdata-liquidity-exit-cost.onrender.com/mcp/codex mcp add agentdata-executable-liquidity-exit-cost --url https://agentdata-liquidity-exit-cost.onrender.com/mcp/{
"mcpServers": {
"agentdata-executable-liquidity-exit-cost": {
"url": "https://agentdata-liquidity-exit-cost.onrender.com/mcp/"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"agentdata-executable-liquidity-exit-cost": {
"type": "http",
"url": "https://agentdata-liquidity-exit-cost.onrender.com/mcp/"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"agentdata-executable-liquidity-exit-cost": {
"url": "https://agentdata-liquidity-exit-cost.onrender.com/mcp/"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"agentdata-executable-liquidity-exit-cost": {
"serverUrl": "https://agentdata-liquidity-exit-cost.onrender.com/mcp/"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Pontuação
39 / 100
Incompleta
- Documentação22/25
- Manutenção16/25
- Confiança6/20
- Capacidade0/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 74 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.1.0Mais recente | 18 de jun. de 2026 |