Skip to main content
Glama

Mod metadata

nexus_get_mod
Read-only

Retrieve raw metadata for a single mod by ID, including name, version, author, and status. Use for quick lookups without fetching files or changelogs.

Instructions

Raw metadata for a single mod (name, version, author, counters, status). Narrow follow-up tool: if you also need files or changelogs, call nexus_mod_overview instead of chaining calls.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mod_idYesNumeric mod id (visible in the page URL)
compactNoTrim the payload (default true)
refreshNoBypass the cache
game_domain_nameNoGame domain, e.g. "skyrimspecialedition". Default: "mountandblade2bannerlord"

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, and openWorldHint=true, covering the safety profile. The description adds that the payload is raw metadata and mentions counters/status, plus the anti-chaining hint, but says nothing about caching or throttling behavior.

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?

Two sentences, zero waste, with the core purpose front-loaded and the routing guidance second. Size matches the tool's narrow scope.

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?

No output schema exists, but the description lists the returned fields (name, version, author, counters, status), which is enough to set expectations. Minor omission of cache/refresh semantics prevents a 5.

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 coverage is 100%, so mod_id, compact, refresh, and game_domain_name are all documented in the schema itself. The description adds no parameter-level detail (e.g., default domain or cache semantics) beyond the schema, so baseline 3 applies.

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+resource (raw metadata for a single mod) and enumerates the returned fields. It also explicitly distinguishes itself from nexus_mod_overview, so an agent can separate them without reading schemas.

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

Usage Guidelines5/5

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

Provides explicit routing: if files or changelogs are also needed, use nexus_mod_overview rather than chaining calls. This names the alternative and the condition that selects it.

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