AgentLedger
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AGENT_ID | Yes | Agent identifier | |
| PRIVATE_KEY | Yes | Your wallet private key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| logging | {} |
| completions | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| log_reasoningA | Log an AI agent reasoning trace permanently to 0G Storage. Every decision step is stored immutably with a root hash receipt. Decisions are chained so history cannot be tampered with. |
| get_reasoningA | Retrieve a specific reasoning trace from 0G Storage using its root hash |
| verify_reasoningA | Verify a reasoning trace exists unchanged on 0G Storage. Returns true if the data is intact, false if tampered or missing. |
| get_agent_historyC | Get the full reasoning history for an agent — all decisions they have ever logged to AgentLedger |
| audit_agentB | Audit an agent's complete reasoning chain. Downloads every decision and verifies the chain has not been tampered with. Returns INTACT or BROKEN with details. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: logging, retrieving, verifying, listing history, and auditing. No overlap or ambiguity.
All names use a consistent verb_noun pattern in snake_case (e.g., log_reasoning, get_reasoning, verify_reasoning). Even get_agent_history and audit_agent fit the pattern with different nouns.
Five tools are appropriate for the focused domain of immutable reasoning logging. Each tool earns its place without unnecessary bloat or deficiency.
Core operations (create, read, list, verify, audit) are covered. Missing a way to discover agent IDs, but the immutable nature justifies no delete/update. Minor gap in agent discovery.