assetcore_get_container_contents
AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Retrieve a unified view of container contents (balances, placements, or slots) with freshness metadata.
Details
AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Retrieve a unified view of container contents (balances, placements, or slots) with freshness metadata.
Calls /v1/read/namespaces/{namespace_id}/containers/:id/contents to return container metadata plus a tagged contents payload: type=balance {balances[]}, type=grid {balances[], placements[], grid}, type=slots {slots[]}, type=continuous_1d {placements[], continuous}, or type=continuous_2d {placements[], continuous}. Responses include balance container kind metadata with quantization_inv, canonical decimal quantity strings in balances[] (class, key, quantity), server/client correlation identifiers, and freshness {namespace, world_seq, commit_log_world_seq, lag, lag_ms}.
Protocols
- MCP
- OpenAI
- Gemini
Input Schema
{
"properties": {
"container_id": {
"description": "Container identifier to inspect.",
"maxLength": 128,
"minLength": 1,
"pattern": "^[A-Za-z0-9._~\\-]+$",
"type": "string"
},
"namespace_id": {
"description": "Required namespace identifier for all namespaced operations.",
"minimum": 1,
"type": "integer"
}
},
"required": [
"container_id",
"namespace_id"
],
"type": "object"
}
Examples
No examples are currently available for this tool.