Skip to main content
Glama

Verify Kit Install

boosthis_verify_kit_install
Read-only

Check a Boosthis kit's FILES ON DISK are byte-perfect (same check over plain HTTPS: POST https://www.boosthis.com/api/kit//verify) - a pass proves the files, never that anything is measured yet. files[] is { path, sha256 } for every kit file written; runtime says which kit - name it, we never guess. The verdict names the exact missing, modified and unexpected paths, each with expected sha256. Read-only; returns no credentials.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filesYesEach written kit file as { path, sha256 } - the lowercase-hex sha256 of the file's exact contents.
runtimeNoWhich runtime's kit to verify against. Required, never guessed.
repair_stepsNoOptional. Adds step-by-step repair text. Default false.
installed_versionNoThe kit version installed here.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedInput schema / properties / runtime / description
      Previous value: -"Which runtime's kit to verify against. Defaults to 'rn'."New value: +"Which runtime's kit to verify against. Required, never guessed."
  2. Changed1 schema field changed
    • changedInput schema / properties / installed_version / description
      Previous value: -"The kit version currently installed in this project."New value: +"The kit version installed here."
  3. Changed1 schema field changed
    • changedInput schema / properties / repair_steps / description
      Previous value: -"Optional. When true, the answer carries step-by-step repair text, not only the finding. Default false."New value: +"Optional. Adds step-by-step repair text. Default false."
  4. Changed2 schema fields changed
    • changedInput schema / properties / files / description
      Previous value: -"Each written kit file as { path, sha256 } — the lowercase-hex sha256 of the file's exact contents."New value: +"Each written kit file as { path, sha256 } - the lowercase-hex sha256 of the file's exact contents."
    • changedInput schema / properties / repair_steps / description
      Previous value: -"Optional. When true, a mismatch verdict carries the step-by-step repair text as well as the finding. Default false."New value: +"Optional. When true, the answer carries step-by-step repair text, not only the finding. Default false."
  5. Changed1 schema field changed
    • changedInput schema / properties / runtime / description
      Previous value: -"Which runtime's kit to verify against, matched to the project you are in. Defaults to 'rn' (React Native) when omitted."New value: +"Which runtime's kit to verify against. Defaults to 'rn'."
  6. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint, destructiveHint), the description adds substantial behavioral detail: it discloses the read-only nature, states that no credentials are returned, explains exactly what the verdict reports (missing, modified, unexpected paths with expected sha256), and cautions about the limits of a passing result. This goes well beyond what annotations alone provide and helps set accurate expectations.

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 dense but not bloated; it front-loads the core purpose and then provides parameter semantics, output verdict details, and a safety note. The HTTPS endpoint mention is slightly extraneous but earns its place by indicating this is the same check already available over plain HTTP. Every sentence contributes useful information, though the description is a bit long.

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?

With no output schema, the description properly explains what the verdict returns: exact missing, modified, and unexpected paths with expected sha256 values. It also covers the required parameter behavior, the runtime enum convention, and the read-only/no-credentials guarantee. For a 4-parameter verification tool, this is a complete and self-sufficient description.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds meaningful semantics for the two key parameters: files[] is 'for every kit file written' and runtime must be 'named, never guessed.' This clarifies the agent's responsibility when constructing inputs. repair_steps and installed_version are not elaborated in the description, but their schema descriptions are adequate.

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 states a specific verb+resource: 'Check a Boosthis kit's FILES ON DISK are byte-perfect.' It also differentiates this from related tools by emphasizing file verification on disk and by adding the important caveat that 'a pass proves the files, never that anything is measured yet.' Among the sibling tools, this clearly stands out as the installation-integrity verifier.

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 gives clear contextual guidance: use this to verify that kit files on disk match expected byte-perfect hashes. It also provides an implicit exclusion with 'never that anything is measured yet,' warning agents not to use it as evidence of runtime behavior. It does not name sibling alternatives explicitly, but the context is sufficient for an agent to select it appropriately.

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

A3.9/5.0
Disambiguation4/5

Most tools target a distinct resource or workflow: alerts, budgets, crashes, traces, jobs, promises, kits, and rules. A few summary-style tools such as snapshot, session_summary, and what_should_i_look_at_next overlap in spirit, but their descriptions clarify the different aggregation levels and purposes.

Naming Consistency4/5

All tools share the consistent boosthis_ snake_case prefix, making the family immediately recognizable and predictable. However, naming mixes noun-resource styles with verb-command styles, and a few names are question-like phrases such as boosthis_what_should_i_look_at_next and boosthis_which_kits.

Tool Count3/5

At 26 tools, this is on the heavy side and slightly past the 16-25 range where a large toolset starts to feel burdensome. The count is defensible because each tool maps to a distinct observability or kit-management concern, but agents will need to do significant selection work.

Completeness4/5

The surface covers a broad lifecycle: kit installation and verification, rules and code matching, performance snapshots and trends, crash risk, release checks, promises, alerts, and connection status. It is mostly read-only by design, so the lack of write operations beyond remember_promise is not a major gap, though alert and job management actions are intentionally absent.

Resources