Skip to main content
Glama
SSanderV

osrs-wiki-mcp

by SSanderV

OSRS Wiki MCP

A local, read-only Model Context Protocol server for the Old School RuneScape Wiki. It gives AI clients ten focused tools for Wiki research, with validated structured output and source provenance on every successful response.

  • Stateless: no player account, database, telemetry, or disk cache.

  • Source-backed: results include canonical Wiki URLs and fetch timestamps; parsed pages also include an exact revision link.

  • Bounded: response sizes, pagination, retries, and request time are capped.

  • Read-only: the server only retrieves public Wiki data.

Quick start

Node.js 24 or newer and npx are required.

Codex

codex plugin marketplace add SSanderV/osrs-wiki-mcp --ref v1.1.3
codex plugin add osrs-wiki-mcp@osrs-wiki

Claude Code

claude plugin marketplace add SSanderV/osrs-wiki-mcp@v1.1.3 --scope user
claude plugin install osrs-wiki-mcp@osrs-wiki --scope user

Gemini CLI

gemini extensions install https://github.com/SSanderV/osrs-wiki-mcp --ref v1.1.3

The plugin and extension include the MCP setup plus a small Wiki-research skill. All three launch the pinned npm package osrs-wiki-mcp@1.1.3.

Other MCP clients

Configure a standard-input/output server with:

{
  "command": "npx",
  "args": ["--yes", "osrs-wiki-mcp@1.1.3"]
}

Start a fresh client session after installation. If you previously configured an osrs-wiki MCP server directly, remove that registration first so the plugin is the only provider of the server.

Related MCP server: OSRS MCP Server

Tools

Tool

Inputs

Use it for

search_wiki

query, optional limit and offset

Find canonical pages and snippets.

get_wiki_page

title

Read a bounded, cleaned page with its section index.

get_wiki_sections

title

List a page's sections.

get_wiki_section

title, section

Read one section by its numeric index.

get_item_info

item

Get an item's description, properties, bonuses, and creation facts.

find_shop

item, optional limit and offset

Page through complete shop listings.

find_drop_sources

item, optional limit and offset

Page through complete monster-drop listings.

get_item_sources

item, optional perCategoryLimit

Get a bounded overview of drops, shops, recipes, and ground spawns.

get_quest_requirements

quest

Get Wiki-sourced requirements without evaluating a player.

get_monster_info

monster, optional variant

Get separate monster variants, map points, and access notes.

Example requests:

  • “What are the requirements for Dragon Slayer I?”

  • “Where can an ironman obtain a rune scimitar?”

  • “Find the exact Wiki section explaining Hespori mechanics.”

All public text inputs accept 1–256 Unicode characters. Tool schemas declare the exact limits and defaults. When results are truncated or upstream pagination is incomplete, warnings explains the safe follow-up action.

Responses and provenance

Successful calls return:

  • content for clients that display readable text; and

  • structuredContent, validated against the tool's MCP output schema.

Provenance includes the contributing Wiki URLs, original fetchedAt time, attribution, license details, and whether content was transformed. Parsed-page responses additionally include the exact revision ID and revision URL.

Failures use stable error codes such as NOT_FOUND, UPSTREAM_TIMEOUT, UPSTREAM_RATE_LIMITED, UPSTREAM_UNAVAILABLE, UPSTREAM_INVALID_RESPONSE, and RESPONSE_TOO_LARGE. Invalid arguments remain standard JSON-RPC parameter errors.

Reliability and privacy

  • A tool call has a 30-second total budget; each upstream request gets at most 20 seconds within that budget.

  • Transient network and rate-limit failures receive at most two bounded retries, respecting Retry-After only when time remains.

  • Responses are capped at 5 MiB. Large Bucket scans stop after 10,000 raw rows and report incomplete or truncated results.

  • Valid upstream responses may be cached in memory for five minutes. The cache is limited per process, never written to disk, and cleared on restart.

  • Standard output is reserved for MCP traffic. Sanitized diagnostics use standard error.

Scope

The server deliberately does not provide player progress, hiscores, Grand Exchange prices, DPS calculations, Wiki images, persistent storage, hosting, or a local Wiki mirror. Quest requirements are facts rather than met/missing evaluations, and monster variants are never combined.

Development

npm.cmd ci --ignore-scripts
npm.cmd run typecheck
npm.cmd test
npm.cmd run build
npm.cmd run smoke:stdio
npm.cmd run pack:check

Tests use synthetic fixtures and do not contact the live Wiki. The optional live smoke makes two low-volume requests and does not persist responses:

npm.cmd run test:live

See CONTRIBUTING.md for development guidance and SECURITY.md for private vulnerability reporting.

Licensing and attribution

The source code is MIT licensed. Retrieved Old School RuneScape Wiki content remains subject to CC BY-NC-SA 3.0, including its non-commercial and ShareAlike conditions. Downstream users are responsible for how they reuse that content. See THIRD_PARTY_NOTICES.md.

RuneScape and Old School RuneScape are trademarks of Jagex Limited. This independent project is not affiliated with, endorsed by, or sponsored by Jagex Limited, Weird Gloop, or the Old School RuneScape Wiki.

Available Tools

10 tools
find_drop_sourcesA
Read-onlyIdempotent

Get the complete paginated Old School RuneScape Wiki drop listing for an item; get_item_sources is the bounded overview.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesExact Wiki item name
limitNo
offsetNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemYes
limitYes
totalYes
offsetYes
sourcesYes
returnedYes
warningsYes
truncatedYes
incompleteYes
nextOffsetNo
provenanceYes
skippedRowsYes
totalIsExactYes
rawCapReachedYes
rawRowsExaminedYes

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, covering safety and idempotency. The description adds 'complete paginated' indicating paginated retrieval, but does not elaborate on iteration or concurrency behavior. Adequate given annotation richness.

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 concise sentences: first states purpose, second contrasts with sibling. No fluff or redundant information.

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?

With a full output schema, rich annotations, and clear sibling context, the description covers the essential purpose and alternative. It omits no critical details given the tool's simplicity and available structured metadata.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is low (33%: only item described). The description mentions 'paginated' giving context for limit/offset, but does not explain how to use them (e.g., offset increments, limit max). Inadequate compensation given low schema coverage.

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?

The description clearly states the tool gets a 'complete paginated drop listing' for an item, and explicitly distinguishes it from sibling 'get_item_sources' as a bounded overview.

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 mentions the alternative sibling tool ('get_item_sources' for bounded overview), guiding when to use this tool for a full paginated listing vs a summary. No explicit when-not or prerequisites, but the contrast is clear.

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

find_shopA
Read-onlyIdempotent

Get the complete paginated Old School RuneScape Wiki shop listing for an item; get_item_sources is the bounded overview.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesExact Wiki item name
limitNo
offsetNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemYes
limitYes
shopsYes
totalYes
offsetYes
returnedYes
warningsYes
truncatedYes
incompleteYes
nextOffsetNo
provenanceYes
skippedRowsYes
totalIsExactYes
rawCapReachedYes
rawRowsExaminedYes

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, destructiveHint=false, covering safety and side effects. The description adds 'complete paginated' but does not detail pagination behavior (e.g., how to iterate) or other nuances, providing minimal incremental transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that conveys the core function and a sibling reference. It is concise and front-loaded, but could be slightly more structured (e.g., separating the sibling note). Overall efficient.

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

Completeness3/5

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

The tool has an output schema (though not provided in input) and three parameters. The description indicates pagination and completeness, but lacks details on pagination mechanics, required parameter behavior, and error cases. It is adequate for a simple tool but not fully comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 33% (only 'item' has a description). The description does not explain the 'limit' or 'offset' parameters, and the schema's description of 'item' as 'Exact Wiki item name' is minimal. The description fails to add meaning beyond what the schema provides, leaving parameter usage ambiguous.

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?

The description clearly states the tool retrieves 'the complete paginated Old School RuneScape Wiki shop listing for an item', specifying the resource (shop listings) and verb (get). It distinguishes from the sibling 'get_item_sources' by calling it 'the bounded overview', indicating scope differentiation.

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 explicitly mentions 'get_item_sources is the bounded overview', providing a direct comparison to a sibling tool. However, it does not elaborate on when to avoid using this tool or specify prerequisites beyond item name matching.

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

get_item_infoA
Read-onlyIdempotent

Get normalized facts from an Old School RuneScape Wiki item page; use get_item_sources for acquisition data.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesExact Wiki item name

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYes
titleYes
valueNo
weightNo
bonusesNo
examineNo
membersNo
creationNo
noteableNo
warningsYes
equipableNo
questItemNo
stackableNo
tradeableNo
lowAlchemyNo
provenanceYes
descriptionYes
highAlchemyNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive nature. Description adds that it returns 'normalized facts', which is behavioral context but not essential given annotations. No contradictions.

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?

Single, concise sentence with no unnecessary words. Efficiently conveys purpose and includes cross-reference to sibling tool.

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 output schema present, description does not need to detail returns. 'Normalized facts' is sufficient. Single parameter fully described in schema. Complete for a simple read tool.

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?

Only one parameter 'item' with schema description 'Exact Wiki item name'. Description does not add further parameter meaning, but schema coverage is 100%, so baseline 3 is appropriate.

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?

Description clearly states 'Get normalized facts from an Old School RuneScape Wiki item page' and distinguishes from sibling 'get_item_sources' with explicit guidance. Verb and resource are specific.

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?

Description explicitly says when to use this tool (get normalized facts) and when to use an alternative ('use get_item_sources for acquisition data'), providing clear context.

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

get_item_sourcesA
Read-onlyIdempotent

Get a bounded Old School RuneScape Wiki acquisition overview; follow truncation warnings with find_shop or find_drop_sources.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemYesExact Wiki item name
perCategoryLimitNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemYes
dropsYes
shopsYes
recipesYes
coverageYes
warningsYes
provenanceYes
groundSpawnsYes
perCategoryLimitYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds value by mentioning boundedness and truncation warnings, providing behavioral context beyond annotations. It does not contradict annotations.

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 a single sentence followed by a brief instruction, with no unnecessary words. It front-loads the core purpose and fits within the constraints of providing enough guidance without being verbose.

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?

Given two parameters (one required) and an output schema (providing return structure), the description covers the tool's main purpose and usage context with siblings. It lacks parameter-level details for perCategoryLimit, but overall it is adequate for the complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50% (only 'item' described). The description does not add meaning for 'perCategoryLimit', which is undocumented in schema. It only mentions 'bounded' but does not explain the parameter's role. The agent gains no additional insight from the description.

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?

The description clearly states the tool's function with a specific verb ('Get') and resource ('bounded Old School RuneScape Wiki acquisition overview'). It distinguishes from sibling tools by mentioning truncation warnings and directing to find_shop or find_drop_sources.

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?

The description explicitly tells the agent to 'follow truncation warnings with find_shop or find_drop_sources', providing clear guidance on when to use alternatives. This helps the agent decide when this tool is appropriate versus its siblings.

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

get_monster_infoA
Read-onlyIdempotent

Get separate Old School RuneScape Wiki monster variants and facts without combining variants or calculating DPS.

ParametersJSON Schema
NameRequiredDescriptionDefault
monsterYesExact Wiki monster name
variantNoOptional exact variant anchor

Output Schema

ParametersJSON Schema
NameRequiredDescription
monsterYes
variantsYes
warningsYes
mapPointsYes
provenanceYes
accessNotesYes
totalVariantsYes
selectedVariantNo
variantsTruncatedYes
totalVariantsIsExactYes

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds behavioral nuance by specifying that it returns separate variants and facts without combining or calculating DPS, providing useful context beyond the annotations.

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 a single, well-structured sentence of 17 words. It is front-loaded with the key action and resource, contains no superfluous information, and is highly concise.

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?

Given the presence of a full output schema, annotations covering safety and idempotency, and the clear purpose statement, the description is complete enough for a simple lookup tool. No further details are necessary for an agent to use or select this tool correctly.

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%, with both parameters ('monster' and 'variant') having clear descriptions in the input schema. The description does not add additional parameter semantics beyond what the schema provides, so a baseline score of 3 is appropriate.

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?

The description clearly states the verb 'Get' and the resource 'Old School RuneScape Wiki monster variants and facts', and adds distinguishing context by noting it avoids combining variants or calculating DPS. This sets it apart from sibling tools like get_wiki_page or search_wiki.

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

Usage Guidelines3/5

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

The description implies usage for obtaining separate variant data without DPS calculation, but does not explicitly state when to use this tool over alternatives. No exclusions or when-not scenarios are provided, leaving the agent to infer from context.

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

get_quest_requirementsA
Read-onlyIdempotent

Get Old School RuneScape Wiki quest requirements without evaluating any player's progress.

ParametersJSON Schema
NameRequiredDescriptionDefault
questYesExact Wiki quest name

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
questYes
skillsYes
warningsYes
provenanceYes
descriptionNo
questPointsNo
manualConditionsYes
prerequisiteQuestsYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds behavioral context beyond annotations by stating that the tool does not evaluate player progress, which is a key behavioral trait for an AI agent to understand.

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 a single sentence that is concise, front-loaded with the core action, and contains no filler or redundant information.

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?

Given the tool's simplicity (one parameter, no enums, comprehensive annotations, and an output schema), the description is fully sufficient. It covers purpose, key behavioral constraint, and is complete.

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?

The input schema has 100% description coverage for the single parameter 'quest' (described as 'Exact Wiki quest name'). The tool description adds no additional parameter details, so it meets the baseline but does not exceed it.

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?

The description clearly states the verb 'Get', the specific resource 'Old School RuneScape Wiki quest requirements', and adds a key qualifier 'without evaluating any player's progress'. This distinguishes it clearly from sibling tools like get_wiki_page or search_wiki.

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 includes a usage guideline: 'without evaluating any player's progress', which explicitly tells the agent when to use this tool vs. alternatives like personalized quest requirement tools. However, it does not explicitly mention when not to use it or name alternatives.

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

get_wiki_pageA
Read-onlyIdempotent

Get a bounded Old School RuneScape Wiki page. If truncated, use get_wiki_sections and get_wiki_section.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesExact Wiki page title

Output Schema

ParametersJSON Schema
NameRequiredDescription
titleYes
contentYes
sectionsYes
warningsYes
truncatedYes
provenanceYes
totalCharactersYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate read-only, idempotent, and non-destructive behavior. The description adds that the page is 'bounded' (may be truncated), which is key behavioral context beyond annotations. No contradiction.

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?

One concise sentence that conveys both purpose and usage guidelines. No extraneous information.

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?

Given the tool's simplicity (1 parameter, output schema exists, annotations complete), the description is fully adequate. It addresses the truncation behavior and provides fallback tools.

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% with a clear description for the single 'title' parameter. The description does not add any additional semantics beyond what the schema already provides.

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?

The description clearly states the action ('Get') and resource ('bounded Old School RuneScape Wiki page'). It distinguishes from siblings by mentioning truncation and naming alternative tools (get_wiki_sections, get_wiki_section) for when the page is truncated.

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 provides explicit guidance on when not to use this tool (if truncated) and directs to alternative tools. It does not explain when to use it, but the purpose is self-evident given the context of sibling tools.

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

get_wiki_sectionA
Read-onlyIdempotent

Get one bounded Old School RuneScape Wiki section by the numeric index returned by get_wiki_sections.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesExact Wiki page title
sectionYesSection index from get_wiki_sections

Output Schema

ParametersJSON Schema
NameRequiredDescription
titleYes
contentYes
sectionYes
warningsYes
truncatedYes
provenanceYes
totalCharactersYes

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, openWorldHint, and non-destructive. Description adds the 'bounded' nature and dependency on another tool, which is useful but not extensive.

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?

Single sentence directly stating purpose and dependency. No unnecessary words.

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?

Simple tool with full annotation coverage, output schema present, and clear params. Description adequately covers what is needed for an agent to use it correctly.

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 covers both parameters with descriptions (100% coverage). Description does not add new meaning beyond reinforcing the connection to get_wiki_sections.

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?

Clearly states it gets a wiki section by numeric index from get_wiki_sections. Distinguishes from sibling tools like get_wiki_page and get_wiki_sections.

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?

Explicitly ties input to output of get_wiki_sections, implying workflow. Does not provide explicit when-not-use or list alternatives, but the context is clear.

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

get_wiki_sectionsA
Read-onlyIdempotent

List bounded section metadata for an Old School RuneScape Wiki page before calling get_wiki_section.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesExact Wiki page title

Output Schema

ParametersJSON Schema
NameRequiredDescription
titleYes
totalYes
returnedYes
sectionsYes
warningsYes
truncatedYes
provenanceYes

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds 'bounded section metadata' but does not explain what 'bounded' means or what metadata fields are included. With rich annotations, the description adds marginal value.

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 a single concise sentence that front-loads the action and purpose, with no wasted words.

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?

Given the output schema exists (not shown but indicated), the description need not explain return values. For a simple tool with one parameter and thorough annotations, the description covers the essential task and usage context fully.

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% and the schema clearly describes the 'title' parameter as 'Exact Wiki page title'. The description adds no additional parameter information beyond the schema, so baseline score 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?

The description clearly states the tool lists 'bounded section metadata' for a Wiki page and explicitly positions it as a prerequisite to get_wiki_section, distinguishing it from that sibling.

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 explicitly says to use this tool 'before calling get_wiki_section', providing clear when-to-use guidance. It does not explicitly mention when not to use it, but the context implies it's for exploring sections.

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

search_wikiA
Read-onlyIdempotent

Search the Old School RuneScape Wiki for canonical article titles and snippets.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesWiki search query
offsetNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
offsetYes
resultsYes
nextOffsetNo
provenanceYes

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare the tool as read-only, idempotent, and non-destructive. The description adds that it returns 'canonical article titles and snippets', but no additional behavioral traits are disclosed beyond the annotations.

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 a single concise sentence with no unnecessary words, effectively summarizing the tool's function.

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?

Given the annotations and output schema, the description is mostly complete. It identifies the tool's purpose and output type. However, it could hint at using get_wiki_page for full content retrieval after searching.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only the 'query' parameter has a minimal description in the schema; 'limit' and 'offset' lack any semantic explanation in the description. The description does not compensate for the low schema coverage (33%).

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?

The description clearly states the tool searches the Old School RuneScape Wiki for canonical article titles and snippets, distinguishing it from sibling tools like get_wiki_page (retrieves full page) and find_drop_sources (different search scope).

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool over alternatives such as get_wiki_page for full content or other search tools. The description only states what it does without usage context.

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

TDQS

A4.2/5.0
Disambiguation5/5

Each tool targets a distinct aspect of the Old School RuneScape Wiki: drops vs shops, item info vs sources, monster info, quest requirements, wiki page browsing (page, sections, section), and search. No overlap is apparent.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern using snake_case (e.g., find_drop_sources, get_item_info, search_wiki). There are no deviations or mixed conventions.

Tool Count5/5

10 tools cover the main functionalities needed to interact with the OSRS Wiki: item lookup, monster info, quest requirements, wiki page retrieval and search. This is well-scoped and neither too many nor too few.

Completeness4/5

The tool set covers core wiki operations: searching, reading pages and sections, and extracting data on items, monsters, and quests. Minor gaps exist (e.g., no direct quest detail tool beyond requirements, no equipment info), but the surface is largely complete for a read-only wiki MCP.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    C
    maintenance
    Enables interaction with Old School RuneScape game data and Wiki through the Model Context Protocol, providing tools to search the OSRS Wiki and access game definitions for items, NPCs, locations, and game mechanics.
    23
    34
    31
    MIT
  • A
    license
    B
    quality
    Not graded
    maintenance
    MCP Server for interacting with Old School RuneScape Wiki API and game data files, providing tools to search the OSRS Wiki and access game data definitions through the Model Context Protocol.
    19
    34
    1

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SSanderV/osrs-wiki-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server