cache_lookup
Look up cached results by key to avoid redundant computation. Returns the stored value with a trust score indicating verification level.
Instructions
Look up a cached result by key. Returns the stored value if found, with trust score.
Use this BEFORE computing expensive results -- another agent may have already computed and cached the answer, saving tokens and latency.
Higher trust_score = more agents have verified this result is accurate.
Args: key: Cache key (e.g. 'weather:berlin:2026-03-28', 'research:quantum-computing') agent_id: Your agent identifier for analytics tracking
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| agent_id | No | mcp-agent |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |