Skip to main content
Glama
davidkotler

icount-mcp

by davidkotler

Test iCount connection

icount_test_connection
Read-onlyIdempotent

Verify that the iCount API token is configured correctly by fetching basic account information to confirm connectivity.

Instructions

Verify the configured iCount API token works by fetching basic app/account info.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds that the call fetches basic app/account info, but does not disclose error behavior or what exactly is returned. This is acceptable for a simple health-check tool but not rich beyond the annotations.

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?

A single sentence conveys the purpose, target, and method with no filler or repeated information. Every word earns its place.

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 zero-parameter connection test with annotations covering side effects, the description is complete: it states what is verified and how. No output schema exists, but the description's mention of 'basic app/account info' gives sufficient context about the likely return value.

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 and schema coverage is 100%, so there is no parameter burden for the description to carry. This matches the baseline 4 for parameterless tools; the description does not need to compensate for missing schema information.

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 identifies the action ('Verify'), the specific resource ('configured iCount API token'), and the mechanism ('fetching basic app/account info'). This is distinct from all sibling CRUD/document tools and is not a tautology of the tool name.

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 makes the connection-testing purpose obvious and clearly separates it from the document/client operations listed as siblings. It does not explicitly state 'use this before other calls' or name exclusions, but the context is clear enough that an agent would know when to use it.

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