Skip to main content
Glama
chrischall

setlist-mcp

by chrischall

setlist_mark_attended

Idempotent

Record on your setlist.fm account that you attended a show by setlist ID. Use confirm:true to apply; omit for a dry-run preview.

Instructions

Record on YOUR setlist.fm account that you attended a show — the site's "I was there" marker — by setlist ID. Authenticated via your session (needs SETLIST_SESSION_COOKIE). Idempotent: a no-op if already marked. Without confirm: true it returns a dry-run preview and makes NO change; with confirm: true it toggles attendance and verifies by re-reading your attended list. Results include a setlist.fm url; when you present this data, cite it as a clickable source link to setlist.fm (their API terms require followable attribution — no nofollow). If a result has no url, link to https://www.setlist.fm instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNoMust be true to actually record attendance; omit for a dry-run preview.
setlistIdYesSetlist ID (e.g. from setlist_search_setlists / resolve_concerts)

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. Addedv0.7.0

TDQS

A4.4/5.0
Behavior5/5

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

Going beyond the annotations (readOnlyHint=false, idempotentHint=true, openWorldHint=true), the description discloses meaningful behaviors: authentication via session cookie, dry-run returning a preview and making NO change without confirm: true, verification by re-reading the attended list after confirming, and the API-term attribution rule (followable link, no nofollow) with a fallback URL. No contradiction with 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?

Purpose is front-loaded, and each subsequent sentence carries distinct, necessary information: auth, idempotency, confirm/dry-run semantics, and attribution obligations. The density is justified for a mutation tool with this many constraints; there is no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no output schema, the description covers the essentials: auth requirement, dry-run vs. confirm behavior, verification step, and how to handle the url in results. The only minor gap is that the full result shape beyond url is not described, which an agent might need for robust success/failure checks.

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 description coverage is 100%, so the schema already documents confirm and setlistId with adequate descriptions. The tool description marginally reinforces confirm as a safety switch and hints that setlistId originates from setlist_search_setlists / resolve_concerts, but adds little beyond the schema. Baseline 3 applies for high coverage.

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 and resource: 'Record on YOUR setlist.fm account that you attended a show — the site's "I was there" marker — by setlist ID.' It clearly scopes the action to the user's own account and keys it by setlist ID, which distinguishes it from read-only siblings like setlist_get_setlist and from the reverse operation setlist_unmark_attended.

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 usage context: it is the tool for marking attendance on the user's account, requires the SETLIST_SESSION_COOKIE as an explicit prerequisite, and explains the confirm-gated dry-run flow. It stops short of a 5 because it never explicitly names alternatives (e.g., 'to remove the marker, use setlist_unmark_attended'), but the guidance is unambiguous and actionable.

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