Skip to main content
Glama
UberMorgott

nexusmods-mcp-server

by UberMorgott

Get Collection (GraphQL)

get_collection
Read-onlyIdempotent

Retrieve a Nexus Mods collection's details by slug, including author, stats, comment thread ID, latest revision, and optionally its mod list.

Instructions

Collection details by slug: author, stats, comment thread id, latest revision and (optionally) its mod list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gameNoGame domain name, e.g. "skyrimspecialedition"
slugYesCollection slug from the URL /<game>/collections/<slug>
list_modsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds the detail that the mod list is optional, which is useful behavioral context, but it does not disclose anything else 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 that front-loads the resource and return fields, with the optional flag clearly marked. Every word earns its place; no filler or repetition of the title.

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 read-only lookup with a single required parameter and no output schema, the description covers the essential return fields and the optional mod list. It does not describe pagination or the exact shape of the response, but given the tool's simplicity and the annotations covering safety, this is nearly complete.

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 67%, with game and slug documented in the schema. The description adds meaning by clarifying that slug comes from the URL pattern and that list_mods controls whether the mod list is included, but it does not explain the game parameter's role or default behavior beyond what the schema already states. Baseline 3 is appropriate since the schema does most of the work.

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 states a specific verb ('get') and resource ('collection'), and enumerates the exact fields returned: author, stats, comment thread id, latest revision, and optionally the mod list. This clearly distinguishes it from sibling tools like get_collection_comments or search_collections, which serve different purposes.

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

Usage Guidelines3/5

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

The description implies usage by slug and mentions the optional mod list, but it does not explicitly state when to use this tool versus alternatives like search_collections or get_collection_comments. The context is clear enough for a straightforward lookup, but no exclusions or alternative routing are provided.

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