Skip to main content
Glama

Mod files

nexus_get_mod_files
Read-only

Retrieve and list files for a Nexus mod, excluding archived versions by default. Specify a mod ID to get file details, or a file ID for a single file.

Instructions

List the files published for a mod. By default archived/old versions and the upload history are filtered out. Pass file_id for a single file. For a complete picture (metadata + files + changelogs) prefer nexus_mod_overview.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mod_idYes
compactNoTrim each file entry (default true)
file_idNoDetails of one specific file
refreshNoBypass the cache
categoryNoNexus filter, e.g. 'main,update' or 'old_version'
include_oldNoInclude ARCHIVED/OLD_VERSION (default false)
include_historyNoInclude the file_updates replacement history (default false, very verbose)
game_domain_nameNoGame domain, e.g. "skyrimspecialedition". Default: "mountandblade2bannerlord"

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.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=true, destructiveHint=false, openWorldHint=true. The description adds real behavioral context beyond that: the default exclusion of archived/old versions and the upload history. It omits pagination/return-shape details, but the safety and default-filtering profile is well covered.

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?

Three tight sentences, all front-loaded: purpose first, then default behavior, then the alternative route. No filler or repetition.

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 list tool with a fully-described schema and no output schema, this covers purpose, defaults, single-file mode, and the alternative route. Missing only minor operational detail (e.g. pagination), which is not required given the annotations and schema.

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?

Schema coverage is high (88%), so the schema does the heavy lifting and baseline is 3. The description nonetheless adds meaning by explaining the file_id single-file path and the default filtering behavior that governs include_old/include_history, edging above baseline.

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 and resource ('List the files published for a mod'), and names a sibling (nexus_mod_overview) with the condition that selects it. An agent can distinguish it from nexus_get_mod and nexus_mod_overview without opening any schema.

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?

Gives clear context (default filtering of old versions/history) and explicitly routes to nexus_mod_overview 'for a complete picture', plus when to pass file_id. This is strong routing guidance; it stops short of enumerating every when-not scenario, so 4 rather than 5.

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