Skip to main content
Glama

BotKelp

Check component updates

check_component_updates

Read-only, side-effect-free: compares the component versions you currently have pinned against BotKelp's current registry and reports what has newer versions available, plus each component's latest CI freshness status. BotKelp never reads your repo itself — pass the versions you currently have. Call this on whatever schedule you like (daily, weekly, on demand); nothing is pushed or applied automatically. Requires an BotKelp account key with sufficient credit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
botKelpKeyYesBotKelp account key (starts with "bk_live_"). Required.
componentPinsYesThe component ids and versions you currently have, read from your own local copy.

Schema Changelog

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

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the behavioral burden. It explicitly declares the tool read-only and side-effect-free, notes that BotKelp never reads the user's repo, and states the account key requirement with sufficient credit. This gives an agent a clear safety profile.

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 front-loaded with the core purpose and side-effect declaration, then adds scheduling and auth requirements in dense, purposeful sentences. There is minimal redundancy; every sentence contributes useful information.

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?

For a read-only check tool with only two parameters and no output schema, the description covers what it does, what input the agent must supply, how often it can be called, what side effects it does not have, and the authentication requirement. The output is also summarized (newer versions and CI freshness), so an agent can invoke it correctly.

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?

Schema coverage is 100%, so the input schema already fully documents both parameters. The description adds context like 'pinned' versions and 'pass the versions you currently have', but this largely restates the schema's own descriptions rather than adding substantial new meaning.

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 uses a specific verb ('compares') and names the exact resource (component versions pinned vs. BotKelp's registry), plus what it reports (newer versions and CI freshness). It also explicitly contrasts with writing or applying changes, distinguishing it from siblings like apply_changes_to_repo.

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?

Clear guidance is given for when to call it ('on whatever schedule you like — daily, weekly, on demand') and that it never pushes or applies changes. However, it does not explicitly name sibling alternatives or state when not to use it in favor of another tool.

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.2/5.0
Disambiguation4/5

Most tools target clearly distinct actions: search/check are read-only registry operations, generate/get/buy are different scaffold delivery modes, and create/list/apply/verify handle project lifecycle. The main ambiguity is between get_scaffold_template and buy_scaffold_template, which share the same repo-handoff behavior and differ only in payment/account requirements; the descriptions are detailed enough to tell them apart, but an agent could still pick the wrong one without reading carefully.

Naming Consistency5/5

Every tool follows a consistent verb_noun snake_case pattern: search_components, create_project, generate_scaffold, verify_scaffold, apply_changes_to_repo, and so on. The verbs are specific and the nouns map cleanly to the resources being acted on, making the toolset predictable.

Tool Count5/5

Nine tools is well-scoped for a scaffolding and component-registry service. Each tool covers a meaningful part of the workflow—discovery, generation, delivery, verification, project registration, and repository updates—without redundancy or excessive granularity.

Completeness4/5

The core domain is well covered: component discovery, update checking, scaffold generation in three delivery modes, build verification, project registration, and applying changes to a repo. Minor gaps exist—there is no project deletion/unregistration, no way to fetch a single project's details beyond list_projects, and no direct update action after check_component_updates reports newer versions—but agents can work around these without major dead ends.

Resources