history_tracker
Get invocation history for a tool within the current Worker instance. Resets on cold start.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Tool name, e.g. schema-parser, api-executor, code-generator |
Get invocation history for a tool within the current Worker instance. Resets on cold start.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Tool name, e.g. schema-parser, api-executor, code-generator |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the burden of disclosure. It discloses two key behaviors: the history is scoped to the current Worker instance and it resets on cold start. However, it does not describe the output format or any other behavioral nuances, leaving some gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, front-loaded with the core purpose and an important caveat. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and no output schema, the description covers the essential aspects: what it does, its scope, and a key limitation (reset on cold start). It leaves out details about the response, but this is minor given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter 'id' with a clear description and examples. Since schema coverage is 100%, the description does not need to add more. However, it also adds no additional context about the parameter, so the baseline of 3 stands.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Get' and identifies the resource as 'invocation history for a tool within the current Worker instance.' This clearly distinguishes the tool from its siblings (api_executor, code_generator, etc.), which are the tools whose history is being tracked.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives, but it implies that it is for inspecting current-instance invocation history. It lacks any mention of alternatives or exclusions, so the usage context is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool addresses a distinct phase of the API playground workflow: parsing, rendering, executing, code generation, and history tracking. No two tools overlap in purpose, so an agent can select the right one without ambiguity.
All tool names follow the same pattern: a domain noun combined with an agent suffix (e.g., api_executor, schema_parser, history_tracker). This consistent structure makes the set predictable and easy to navigate.
The server has 5 tools, which is well within the ideal range. Each tool contributes a unique, essential capability to the playground experience, with no bloat or redundancy.
The tool set covers the entire lifecycle of building and using an API playground: parse a schema, render an interactive UI, execute live requests, generate code snippets, and inspect history. No obvious gaps or dead ends exist.