Skip to main content
Glama

axint.context.docs

Read-onlyIdempotent

Return the project-local Axint docs context that agents should reload after new chats or context compaction. This is the durable docs memory that keeps the agent using Axint instead of forgetting the workflow. Use: use after compaction when the agent needs workflow docs without rereading the whole site. Inputs: cwd selects project docs context; include sections only when the longer runbook is needed. Effects: read-only generated docs context; writes no files and uses no network.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
platformNoTarget Apple platform, such as macOS, iOS, visionOS, or all.
projectNameNoProject name to include in the docs context.
expectedVersionNoExpected Axint version to compare against axint.status.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
isErrorNo

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable context by stating 'writes no files and uses no network,' which goes beyond the basic read-only hint and clarifies the tool's side-effect profile. It also explains that it is generated docs context, adding behavioral insight without contradicting annotations.

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

Conciseness4/5

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

The description is well-structured with clear sections for purpose, usage, inputs, and effects. It is not overly long and front-loads the main purpose. However, the 'Inputs' section is inaccurate and should be corrected, preventing a perfect score.

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

Completeness3/5

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

The tool has an output schema, so return values are covered. The description gives purpose, usage, and safety context. However, it fails to accurately describe how the actual parameters (platform, projectName, expectedVersion) influence the returned docs context, and the phantom 'cwd' and 'include sections' create confusion. This gap makes the description incomplete for an agent trying to invoke it correctly.

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

Parameters2/5

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

While the schema describes all three parameters (platform, projectName, expectedVersion) with 100% coverage, the description introduces 'Inputs: cwd selects project docs context' and 'include sections only when the longer runbook is needed.' Neither 'cwd' nor 'include sections' correspond to any actual schema property, creating misleading guidance. Rather than adding value, this misdirects the agent and detracts from the schema's clear parameter definitions.

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 returns project-local Axint docs context, using a specific verb ('Return') and resource ('docs context'). It further distinguishes the tool from siblings by explaining it is durable docs memory for agents to reload after chats or compaction, and that it avoids rereading the whole site.

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 explicitly says 'Use: use after compaction when the agent needs workflow docs without rereading the whole site,' providing a clear when-to-use scenario. However, it does not explicitly name alternatives or state when not to use it, so it falls short of a 5.

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

A4.1/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, with descriptions specifying exact use cases (e.g., axint.activate for smoke test, axint.status for version). There is minor potential overlap between axint.suggest and axint.feature, but descriptions clarify suggestion vs generation.

Naming Consistency5/5

All tools follow a consistent hierarchical pattern: 'axint.<category>.<action>' (e.g., axint.agent.advice, axint.swift.validate). Even standalone tools like axint.compile fit the pattern. No mixing of conventions.

Tool Count2/5

36 tools is well above the typical 3-15 range for a well-scoped set. While the server covers a broad domain, the sheer number may overwhelm agents and reduce efficiency. A reduction or grouping would improve coherence.

Completeness4/5

The tool set covers the full Axint development lifecycle: installation, compilation, validation, repair, upgrade, session management, and coordination. Minor gaps exist (e.g., no dedicated tool for deleting project artifacts), but core workflows are well-supported.