Skip to main content
Glama
chrischall

setlist-mcp

by chrischall

Verify setlist.fm API key + connectivity

setlist_healthcheck
Read-onlyIdempotent

Confirm your setlist.fm API key works by calling the countries endpoint. Returns authentication status and distinguishes no key, bad key, or API errors.

Instructions

Confirm the API key is configured and works by calling the setlist.fm countries endpoint. Reports {ok, authenticated, country_count} with a plain-English hint distinguishing "no key" vs "bad key" vs "API error". Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv0.4.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description adds genuine value beyond these: the specific endpoint called, the return shape {ok, authenticated, country_count}, and the plain-English hint distinguishing 'no key' vs 'bad key' vs 'API error'. The trailing 'Read-only.' repeats the annotation and adds no new information, but the rest is substantive.

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?

Two tight sentences that front-load the verb and resource, with the return format and failure modes in the second sentence. The only waste is the trailing 'Read-only.', which duplicates the readOnlyHint annotation and could be dropped.

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 tool with no output schema and strong annotations, this description is complete: it covers purpose, the exact mechanism, the return values, failure-mode disambiguation, and safety. Nothing an agent needs to invoke it correctly is missing.

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 the baseline is 4 and the description has no parameter burden to carry. It appropriately explains the internal mechanism (calling the countries endpoint) without needing to document any inputs.

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?

States a specific verb ('Confirm'), a specific resource ('setlist.fm countries endpoint'), and the outcome being verified ('API key is configured and works'). The purpose is unambiguous and clearly distinct from all 21 sibling tools, none of which perform health checks.

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 title 'Verify setlist.fm API key + connectivity' provides clear context for when to use this tool, and the description reinforces that it is a diagnostic/verification tool rather than a data-query tool. However, it never explicitly names alternatives or states exclusion conditions (e.g., 'use before other setlist calls'), leaving the when-to-use guidance implicit rather than stated.

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