Skip to main content
Glama
UberMorgott

nexusmods-mcp-server

by UberMorgott

Get Download Link (v1)

get_download_link
Read-onlyIdempotent

Generate a direct CDN download link for Nexus Mods files. For non-premium, specify key and expires from an nxm:// link to obtain the URL.

Instructions

CDN download URLs for a file. Premium: works directly. Non-premium: pass key + expires from an nxm:// link (nxm:///mods//files/?key=...&expires=...).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyNoNon-premium only: `key` from an nxm:// link (Mod Manager Download button on the site)
gameYesGame domain name as in site URLs, e.g. "skyrimspecialedition", "fallout4", "stardewvalley"
mod_idYesMod ID (number in the mod page URL /mods/<id>)
expiresNoNon-premium only: `expires` from the same nxm:// link
file_idYesFile ID (from get_mod_files)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds account-state nuance: premium vs non-premium handling and the exact nxm:// source for the optional credentials. It does not describe error cases or return shape, but the annotations carry much of the safety burden.

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?

The description is compact: it opens with the core purpose, then states the two usage modes. Every sentence carries necessary information, and the nxm:// template is included without 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 low-complexity, read-only tool with strong annotations and 100% schema coverage, the description covers the return concept and the main conditional behavior. It does not mention alternatives like download_file, but that is a minor gap given the rest of the structured context.

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 100%, so all five parameters are already documented in the schema. The description adds value by explaining when key and expires are actually required and by providing the nxm:// link template that shows how those values relate to game, mod_id, and file_id.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the resource clearly: 'CDN download URLs for a file.' It also explains the two invocation modes by premium status, so an agent understands what the tool returns. It does not explicitly differentiate from sibling tools like download_file or get_mod_files, so it is clear but not fully sibling-aware.

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 explicit conditional usage: premium callers work directly, while non-premium callers must pass key and expires parsed from an nxm:// link. This is actionable and precise. It does not mention alternatives or say when not to use this tool, but the context is clear enough.

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