Skip to main content
Glama

Recent / trending mods

nexus_list_mods
Read-only

Browse a game's mod feeds—newly added, recently updated, or trending—to discover new mods. Pick a feed and optional limit; set period for the updated feed.

Instructions

Browse a game's feeds: latest_added, latest_updated, trending, or updated (needs period=1d|1w|1m). Use it for discovery; to look for a specific mod use nexus_find_mods instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
feedYes
limitNoMax results (default 15)
periodNoRequired for feed=updated
compactNoTrim each entry (default true)
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, so the safety profile is covered structurally. The description adds the discovery-vs-lookup framing but says nothing about result ordering, pagination, or how compact changes the payload, leaving behavior largely to the schema.

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 tight sentences; the capability enumeration comes first and the sibling routing second, with zero 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 read-only listing tool with full annotations and a near-complete schema, the description covers purpose and routing adequately. It stops short of describing result shape or pagination, which is a minor gap given there is no output schema.

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 80% and already documents limit, period, compact, and game_domain_name defaults. The description only restates the period requirement for feed=updated, adding no meaning beyond the schema, so the 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 (browse) and resource (a game's feeds) and enumerates the four feed values, so an agent knows exactly what comes back. It explicitly distinguishes itself from nexus_find_mods, which is named in the description.

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?

Gives a clear routing rule: use this for discovery, use nexus_find_mods for a specific mod. It also attaches a precondition to one feed value (updated requires period=1d|1w|1m), so the agent knows which calls are valid.

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