Skip to main content
Glama

Find mods by name

nexus_find_mods
Read-only

Search Nexus Mods by name or keywords, falling back to description text, and return mod ID, version, author, downloads, endorsements, update date, and URL in one call.

Instructions

START HERE when you only know a mod's name/keywords: resolves it to a mod_id with version, author, downloads, endorsements, last update and page URL, in ONE call. Backed by the v2 search index - never write a raw GraphQL search yourself. If the name search finds nothing it automatically retries against mod descriptions, so a single call is normally enough. Follow up with nexus_mod_overview only if you need files or changelogs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNoExact tag, e.g. 'Gameplay'
sortNorelevance (default when searching) | downloads | endorsements | updatedAt | createdAt | name | ...
limitNoMax results (default 10)
matchNoname = full-text on the title (default), exact = strict full title, description = full-text inside mod descriptions (use for 'a mod that does X')
queryNoName or keywords, e.g. 'party size'
authorNoExact author name as shown on the mod page
offsetNoPagination offset
categoryNoExact category name, e.g. 'Gameplay Changes'
uploaderNoExact Nexus account name of the uploader
all_gamesNoSearch every game instead of a single domain
directionNoSort direction (default DESC)
include_adultNoInclude adult content (default false)
updated_sinceNoISO date (YYYY-MM-DD); keeps mods updated on or after it
game_domain_nameNoGame domain, e.g. "skyrimspecialedition". Default: "mountandblade2bannerlord"

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already establish readOnly/openWorld/non-destructive, but the description adds non-obvious behavior: an automatic fallback retry against mod descriptions when the name search returns nothing, and the fact it is backed by the v2 search index. It does not cover pagination/rate-limit behavior, which keeps it just under a 5.

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?

Four sentences, each earning its place, with the primary directive ('START HERE') front-loaded and the fallback and follow-up guidance ordered by relevance. No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description carries the return-value burden and does so by listing the resolved fields. Combined with the auto-retry note and the sibling for deeper follow-up, an agent has everything needed to call it correctly.

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% (14 params fully described), so the baseline is 3. The description earns extra credit by explaining that match=name silently retries against descriptions, which adds behavioral meaning to the `match` parameter beyond the schema's own text.

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 ('resolves [a mod name] to a mod_id') and enumerates the return payload (version, author, downloads, endorsements, last update, page URL). It clearly differentiates from nexus_mod_overview, nexus_get_mod, and nexus_graphql, so an agent can select it without opening other 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?

Opens with an explicit trigger ('START HERE when you only know a mod's name/keywords'), routes away from a sibling ('Follow up with nexus_mod_overview only if you need files or changelogs'), and forbids an alternative ('never write a raw GraphQL search yourself'). When-to-use, when-not-to-use, and the alternative are all named.

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