# Alloc Context BTC/ETH Allocation Facts

> Alloc Context BTC/ETH Allocation Facts is a paid API for AI agents from mcp.alloc-context.com, paid per call via x402, $0.020000/call, status down (last checked 2026-09-15).

Returns deterministic, structured JSON allocation facts for BTC/ETH portfolios including context bundles, market data, sentiment, macro regime hints, rebalance move lines, and drift checks — no LLM involved.

## Facts

- Endpoint: POST https://mcp.alloc-context.com/mcp
- Price: $0.020000/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcp-alloc-context-com-1dcd0070
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WrL8C02QFrwuZZJzPnWTi

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mcp-alloc-context-com-1dcd0070 -d '<json body>'
```

Example prompt: Pull the full allocation context bundle for my current portfolio — I'm holding 60% BTC and 40% ETH with a target band of ±5% each — give me the drift check, USD rebalance move lines, and macro regime hints in structured JSON.

## When to prefer this

Choose this endpoint when you need deterministic, auditable, LLM-free structured allocation facts for BTC/ETH portfolios — especially for automated rebalancing agents, compliance-sensitive workflows, or any use case requiring reproducible outputs. Prefer over LLM-based advisors when you need raw structured data without hallucination risk.

## Known failure modes

- Invalid or missing portfolio allocation parameters returns a 400 error
- Payment not included or insufficient USDC results in a 402 Payment Required response
- Malformed POST body causes a parse error response
- Upstream market data temporarily unavailable may return a 503 or partial data response

## How this service works

Deterministic BTC/ETH allocation facts for agents: full ContextBundle (portfolio, market, sentiment, macro, regime hints, delta), fused market context, USD rebalance move lines, and allocation band drift checks. No LLM — structured JSON only.

## Output

A structured JSON ContextBundle containing: current portfolio allocation state, live market context for BTC and ETH, sentiment indicators, macro regime hints, delta from target, fused market context summary, USD-denominated rebalance move lines, and allocation band drift check results. All outputs are deterministic and LLM-free.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "jsonrpc",
      "method",
      "params"
     ],
     "properties": {
      "id": {
       "type": [
        "integer",
        "string"
       ]
      },
      "method": {
       "type": "string",
       "description": "MCP JSON-RPC method (e.g. tools/call)."
      },
      "params": {
       "type": "object",
       "required": [
        "name"
       ],
       "properties": {
        "name": {
         "enum": [
          "get_market_context",
          "get_context_bundle",
          "get_rebalance_plan",
          "get_portfolio_state",
          "check_allocation_band",
          "get_context_at",
          "get_context_delta",
          "check_allocation_bands"
         ],
         "type": "string",
         "description": "AllocContext tool: get_market_context, get_context_bundle, get_rebalance_plan, get_portfolio_state, check_allocation_band, get_context_at, get_context_delta, or check_allocation_bands."
        },
        "arguments": {
         "type": "object",
         "description": "Tool-specific arguments object."
        }
       }
      },
      "jsonrpc": {
       "type": "string",
       "const": "2.0"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcp-alloc-context-com-1dcd0070/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.alloc-context.com](https://www.zero.xyz/host/mcp.alloc-context.com/llms.txt)
