ForceX

Chain

Litecoin address summary

get_chain_address · Chain · 1 credit

Use this when the user asks about a Litecoin address balance or activity summary. Address summary (balance, counts). 1 credit base. Includes: stats (+1), recent_transactions (+2, reads address history — scan-window-gated on legacy fx_test_ keys only; live keys, paid and Free-live, are unclamped). For full paginated history use get_chain_address_transactions. If you cannot tell whether an identifier is a block, transaction, or address, use search_chain.

Page Sections

Request

Send a tools/call request to the MCP endpoint /xtract/mcp:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_chain_address",
    "arguments": {
      "chain": "litecoin",
      "address": "<litecoin address>"
    }
  }
}

Parameters

NameTypeRequiredDescription
addressstringyesLitecoin address to look up. Formats: bech32 (ltc1...), legacy base58 (L.../M...), or P2SH (3.../M...). Advisory only — the route validates authoritatively.
chainstring — one of: litecoinyesBlockchain network. Currently litecoin.
includearray of string — one of: recent_transactions, statsnoOptional expansions. Each expansion adds credits.
Full input schema
{
  "additionalProperties": false,
  "properties": {
    "address": {
      "description": "Litecoin address to look up. Formats: bech32 (ltc1...), legacy base58 (L.../M...), or P2SH (3.../M...). Advisory only — the route validates authoritatively.",
      "type": "string"
    },
    "chain": {
      "description": "Blockchain network. Currently `litecoin`.",
      "enum": [
        "litecoin"
      ],
      "type": "string"
    },
    "include": {
      "description": "Optional expansions. Each expansion adds credits.",
      "items": {
        "enum": [
          "recent_transactions",
          "stats"
        ],
        "type": "string"
      },
      "maxItems": 32,
      "type": "array",
      "x-include-costs": {
        "recent_transactions": 2,
        "stats": 1
      }
    }
  },
  "required": [
    "chain",
    "address"
  ],
  "type": "object"
}

Response

The outputSchema is the CLOSED model contract for structuredContent (top-level additionalProperties: false), answer-first fixed key order: source, tool, endpoint, request (echoed arguments), answer (authoritative result summary — answer from this and data), data (the complete result), included/included_digest (full expansion rows + a compact digest, when paid include expansions were served), units, answerable_fields, warnings, citations (complete visible citation array), usage (per-call cost truth), validation, and pagination (cursor/has_more/effective_limit/requested_limit). The single content block is a short plain-text answer card mirroring the same facts (header, Answer, Units, Warnings, Usage, Source). Errors return a plain-text error card and attach NO structuredContent. See How to cite ForceX MCP results.

Full output schema
{
  "additionalProperties": false,
  "description": "Answer-first model contract: source, tool, endpoint, request, answer, data, included?, included_digest?, units, answerable_fields, warnings, citations, usage, validation, pagination?. Errors attach NO structuredContent (plain-text error card in content).",
  "properties": {
    "answer": {
      "description": "Authoritative result summary — answer from this and `data`.",
      "type": "string"
    },
    "answerable_fields": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "citations": {
      "items": {
        "additionalProperties": true,
        "description": "Visible citation (optional keys null-elided).",
        "properties": {
          "docs_url": {
            "type": "string"
          },
          "endpoint": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "tool": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        },
        "required": [
          "source",
          "tool",
          "endpoint",
          "docs_url"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "data": {
      "additionalProperties": true,
      "properties": {
        "address": {
          "type": "string"
        },
        "address_type": {
          "type": "string"
        },
        "balance_atomic_units": {
          "type": "integer"
        },
        "first_seen_height": {
          "type": "integer"
        },
        "first_seen_time": {
          "type": "string"
        },
        "last_seen_height": {
          "type": "integer"
        },
        "last_seen_time": {
          "type": "string"
        },
        "lifetime_tx_count": {
          "type": "integer"
        }
      },
      "type": "object"
    },
    "endpoint": {
      "type": "string"
    },
    "included": {
      "additionalProperties": true,
      "properties": {
        "stats": {
          "additionalProperties": true,
          "description": "Big-integer policy: lifetime_received_atomic_units and lifetime_sent_atomic_units are ALWAYS decimal strings over MCP (unbounded cumulative totals that can exceed 64-bit integer range); treat them as exact integers, never floats.",
          "properties": {
            "input_count": {
              "type": "integer"
            },
            "lifetime_received_atomic_units": {
              "pattern": "^[0-9]+$",
              "type": "string"
            },
            "lifetime_sent_atomic_units": {
              "pattern": "^[0-9]+$",
              "type": "string"
            },
            "output_count": {
              "type": "integer"
            }
          },
          "type": "object"
        }
      },
      "type": [
        "object",
        "null"
      ]
    },
    "included_digest": {
      "description": "Compact per-expansion digest (counts/truncation/sums); full rows stay in `included`.",
      "type": "object"
    },
    "pagination": {
      "type": [
        "object",
        "null"
      ]
    },
    "request": {
      "type": "object"
    },
    "source": {
      "type": "string"
    },
    "tool": {
      "type": "string"
    },
    "units": {
      "type": "object"
    },
    "usage": {
      "additionalProperties": true,
      "description": "Per-call cost truth; cost_note only when the charge exceeds the Free cap.",
      "properties": {
        "base_credit_cost": {
          "type": "integer"
        },
        "credit_cost": {
          "type": [
            "integer",
            "null"
          ]
        },
        "include_credit_costs": {
          "type": "object"
        },
        "rate_limit": {
          "type": [
            "object",
            "null"
          ]
        }
      },
      "required": [
        "credit_cost",
        "base_credit_cost",
        "include_credit_costs"
      ],
      "type": "object"
    },
    "validation": {
      "additionalProperties": false,
      "description": "Validation state; not_applicable_reason when not chain-scope.",
      "properties": {
        "lag_blocks": {
          "type": [
            "integer",
            "null"
          ]
        },
        "not_applicable_reason": {
          "type": "string"
        },
        "scope": {
          "type": [
            "string",
            "null"
          ]
        },
        "status": {
          "type": [
            "string",
            "null"
          ]
        },
        "validated_at": {
          "type": [
            "string",
            "null"
          ]
        },
        "validated_height": {
          "type": [
            "integer",
            "null"
          ]
        }
      },
      "required": [
        "status"
      ],
      "type": "object"
    },
    "warnings": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "source",
    "tool",
    "endpoint",
    "request",
    "answer",
    "data",
    "units",
    "answerable_fields",
    "warnings",
    "citations",
    "usage",
    "validation"
  ],
  "title": "Litecoin address summary result",
  "type": "object"
}

Notes

  • Cost: 1 credit. Costs and tier limits match the wrapped Xtract REST endpoint — see get_developer_limits.
  • Wrapped REST endpoint: /xtract/docs/reference/chain-address/ — the full parameter, response, and methodology reference.
  • Data-retrieval tool: it never creates blockchain transactions, signs messages, publishes content, or changes third-party state (openWorldHint=false, destructiveHint=false). Successful calls consume Xtract credits and record usage on your ForceX account, so readOnlyHint=false.