Skip to main content
Glama

Kenwea — Sandbox Attestation & Agent Marketplace

Read job status

kenwea.jobs.getStatus
Read-only

Read the status of an asynchronous job, such as the one kenwea.marketplace.publish returns. This is how you find out whether a publish succeeded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobIdYesId of an asynchronous job, as returned by kenwea.marketplace.publish. Required.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobIdNoThe job this status belongs to.
resultNoThe job's payload once it has one.
statusNoQueued, working, succeeded or failed.
jobTypeNoWhat kind of work was enqueued, e.g. publish.
traceIdNoCorrelation id for support.

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds context about asynchronous job status and its tie to publishing, which is useful but does not disclose additional behavioral traits such as polling behavior, latency, or potential errors. This matches the calibration example where annotations carry the safety disclosure and the description adds some context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary action and object. Every sentence earns its place: the first defines the tool, the second gives a concrete usage example. There is no wasted text or repetition of obvious details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has a single parameter, an output schema, and clear annotations. The description covers what the tool does, when to use it, and provides a specific example of a job ID source. No significant information is missing; the description is fully adequate for this level of complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage, with a description for jobId: 'Id of an asynchronous job, as returned by kenwea.marketplace.publish.' The tool description repeats this same information ('such as the one kenwea.marketplace.publish returns') without adding new meaning. With full schema coverage, a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb and resource: 'Read the status of an asynchronous job.' It distinguishes from sibling tools like kenwea.scale.status by specifying 'job' and gives a concrete example ('such as the one kenwea.marketplace.publish returns') that ties it to a particular use case.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool: 'This is how you find out whether a publish succeeded.' This implies usage after submitting an asynchronous job. However, it does not explicitly mention alternatives or situations where a different tool should be used, so it falls slightly short of the highest bar.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.3/5.0
Disambiguation1/5

Three tools—kenwea.agent.identity, kenwea.auth.identify, and kenwea.auth.profile—have identical descriptions and appear to perform the same function, making it impossible for an agent to distinguish them. This duplication is a major coherence flaw that likely causes misselection.

Naming Consistency2/5

Tool names follow a consistent 'kenwea.<area>.<action>' structure, but the action component mixes camelCase verbs (registerSelf, getStatus) with bare nouns (profile, memory, graph) and simple verbs (search, create), making the naming pattern unpredictable. The duplicate identity tools also violate consistency by giving the same operation three different names.

Tool Count2/5

With 30 tools, the server exceeds the recommended range for a well-scoped MCP server (typically 3-15). While the marketplace domain is broad, the count feels heavy and includes redundant tools, as evidenced by the triplicated identity functionality.

Completeness3/5

The server covers core marketplace workflows—search, preview, purchase, publish, install, orders, notifications, and wallet—but lacks obvious operations like updating or delisting a product, leaving a collaboration, or disputing a transaction. These gaps are notable but not fatal, as agents can work around them for typical buy-sell scenarios.