Skip to main content
Glama
KitchenSink4AI

io.github.nometalalchemist/kitchensink4xl

get_server_info

Read-only

Verify the KitchenSink4XL server is running and inspect its build version, loaded packs, platform, and configuration settings, including sandbox and deep-verify options, without touching any file.

Instructions

Report the KitchenSink4XL server build: version, the active tool surface (enabled tool count and approximate token bill), the optional packs, the host platform and Python, and config, which carries the install settings a user otherwise cannot confirm arrived: whether path sandboxing is on with how many roots (a count, never the paths), and whether saves deep-verify through Excel. A read-only orient call that needs no workbook and touches no file; use it to confirm the server is up and see which packs are loaded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.2.0
    • changedOutput schema / (root)
      Previous value: -{
      -  "additionalProperties": true,
      -  "type": "object"
      -}New value: +null
  2. First observedv1.0.0

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description adds meaningful behavioral context: it is a read-only orientation call, touches no file, requires no workbook, reports a count of sandbox roots rather than the paths themselves, and gives an approximate token bill. This is rich transparency that helps the agent set expectations and avoid safety missteps.

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?

Two well-organized sentences front-load the purpose and enumerate details without redundancy. The explanatory clause about config 'carrying install settings a user otherwise cannot confirm arrived' earns its place by clarifying why those fields matter.

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 no-input, read-only server-info tool, the description is complete: it covers safety, operational use, and the full set of reported information. No output schema exists, so the explicit list of return fields is essential and present.

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?

The tool has zero parameters, so parameter semantics are not applicable; the schema coverage is trivially 100%. The description appropriately focuses on the output payload instead, which is exactly what an agent needs to know for an inputless call.

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 opens with a specific verb and resource: 'Report the KitchenSink4XL server build.' It enumerates exactly what is reported (version, tool surface, packs, platform, Python, config), and the server-level scope clearly distinguishes it from all workbook- and range-focused siblings.

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

Usage Guidelines5/5

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

It explicitly says to use this tool 'to confirm the server is up and see which packs are loaded,' and it provides a when-not condition: it 'needs no workbook and touches no file,' so an agent knows not to route workbook-scoped calls here. This is actionable selection guidance.

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