RuneScape Wiki RS3

平台与服务

by birdwell

This MCP server provides AI assistants with real-time access to RuneScape 3 game data through the RuneScape Wiki APIs. It enables AI systems to retrieve current Grand Exchange prices, detailed item information (including stats, examine text, and alchemy values), historical price trends with configurable time intervals, and player statistics from the official hiscores across different game modes (normal, ironman, hardcore ironman). The server acts as a bridge between AI applications and RuneScape

什么是 RuneScape Wiki RS3

This MCP server provides AI assistants with real-time access to RuneScape 3 game data through the RuneScape Wiki APIs. It enables AI systems to retrieve current Grand Exchange prices, detailed item information (including stats, examine text, and alchemy values), historical price trends with configurable time intervals, and player statistics from the official hiscores across different game modes (normal, ironman, hardcore ironman). The server acts as a bridge between AI applications and RuneScape

README

RuneScape Wiki MCP Server

A Model Context Protocol (MCP) server that provides access to RuneScape Wiki APIs, including real-time Grand Exchange prices, item data, and player statistics for RuneScape 3 (RS3).

Features

  • Real-time Grand Exchange Prices: Get current, 5-minute, and 1-hour average prices for all items
  • Item Database: Access complete item mappings with metadata (names, IDs, examine text, etc.)
  • Price Time Series: Historical price data with configurable time intervals
  • Player Statistics: Lookup player stats from RuneScape 3 hiscores
  • Multiple Game Modes: Support for normal, ironman, and hardcore ironman accounts
  • MCP Resources: Direct access to price and item data through MCP resource URIs

Installation

Prerequisites

  • Node.js 18.0.0 or higher
  • npm or yarn

Install Dependencies

bash
npm install

Build the Project

bash
npm run build

Development Mode

bash
npm run dev

This will start the TypeScript compiler in watch mode and automatically restart the server when files change.

Usage

With Claude Desktop

Add the following configuration to your Claude Desktop config file:

json
{
  "mcpServers": {
    "runescape-wiki": {
      "command": "node",
      "args": ["/path/to/runescape-wiki-mcp/dist/index.js"]
    }
  }
}

With MCP Inspector

Test the server using the MCP Inspector:

bash
# Using npm script (recommended)
npm run inspector

# Or manually with npx
npx @modelcontextprotocol/inspector node dist/index.js

Quick Test

Verify the server is working correctly:

bash
npm test

Available Tools

get_latest_prices

Get the latest Grand Exchange prices for all items or a specific item.

Parameters:

  • itemId (optional): Item ID to get price for specific item

Example:

json
{
  "itemId": 4151
}

get_item_mapping

Get the complete mapping of all items with their IDs, names, and metadata.

Parameters: None

Returns: Array of items with:

  • id: Item ID
  • name: Item name
  • examine: Examine text
  • members: Whether it's a members-only item
  • lowalch: Low alchemy value
  • highalch: High alchemy value
  • limit: Grand Exchange buy limit
  • value: Item value
  • icon: Icon filename

get_5m_prices

Get 5-minute average prices for all items.

Parameters:

  • timestamp (optional): Unix timestamp to get prices for specific time

get_1h_prices

Get 1-hour average prices for all items.

Parameters:

  • timestamp (optional): Unix timestamp to get prices for specific time

get_timeseries

Get price time series data for a specific item.

Parameters:

  • itemId (required): Item ID to get time series for
  • timestep (required): Time interval - one of: 5m, 1h, 6h, 24h

Example:

json
{
  "itemId": 4151,
  "timestep": "1h"
}

get_player_stats

Get player statistics from RuneScape 3 hiscores.

Parameters:

  • username (required): Player username to lookup
  • gameMode (optional): Game mode - one of: normal, ironman, hardcore

Example:

json
{
  "username": "Zezima",
  "gameMode": "normal"
}

Returns: Parsed statistics including:

  • Overall rank and total level
  • Individual skill levels, experience, and ranks
  • Formatted data for all 30 skills (including Summoning, Dungeoneering, Divination, Invention, Archaeology, and Necromancy)

Item Category Mapping

Category NameCategory Number
Ammo1
Arrows2
Bolts3
Construction materials4
Cooking ingredients5
Costumes6
Crafting materials7
Familiars8
Fletching materials9
Food and Drink10
Herblore materials11
Hunting equipment12
Jewellery13
Mage armour14
Mage weapons15
Melee armour - low16
Melee armour - mid17
Melee armour - high18
Melee weapons - low19
Melee weapons - mid20
Melee weapons - high21
Mining and Smithing22
Potions23
Prayer armour24
Prayer materials25
Range armour26
Range weapons27
Runecrafting28
Runes, Spells, Teleports29
Seeds30
Summoning scrolls31
Tools and containers32
Woodcutting product33
Pocket items34
Stone spirits35
Firemaking products36
Archaeology materials37-43

Refer to this table when using tools that require a category number, such as search_items.

Available Resources

runescape://prices/latest

Direct access to the latest Grand Exchange prices for all items.

runescape://items/mapping

Direct access to the complete item mapping data.

API Endpoints

This server uses the following RuneScape Wiki APIs:

  • RS3 Prices API: https://prices.runescape.wiki/api/v1/rs
    • Latest prices, 5-minute averages, 1-hour averages, time series data
  • RS3 Hiscores API: https://secure.runescape.com/m=hiscore
    • Player statistics for different game modes

Rate Limits

The RuneScape Wiki APIs have the following guidelines:

  • Use a descriptive User-Agent (automatically handled by this server)
  • Avoid excessive requests that could impact API stability
  • The server implements proper error handling and respects API limitations

Error Handling

The server includes comprehensive error handling:

  • API request failures are caught and returned as error responses
  • Invalid parameters are validated before making API calls
  • Network timeouts and connection issues are handled gracefully
  • Player not found errors are properly reported

Development

Project Structure

code
src/
├── index.ts          # Main server implementation
├── types/            # TypeScript type definitions
└── utils/            # Utility functions

dist/                 # Compiled JavaScript output

Scripts

  • npm run build: Compile TypeScript to JavaScript
  • npm run watch: Watch for changes and recompile
  • npm start: Start the server in production mode
  • npm run dev: Start in development mode with auto-restart
  • npm test: Run a simple test to verify the server is working
  • npm run inspector: Launch the MCP Inspector to test the server

Adding New Tools

  1. Define the tool in the tools array with proper schema
  2. Add a case handler in the CallToolRequestSchema handler
  3. Implement the API logic with proper error handling
  4. Update this README with documentation

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT License - see LICENSE file for details.

Acknowledgments

Support

For issues, questions, or feature requests, please open an issue on the GitHub repository.


Note: This is an unofficial tool and is not affiliated with Jagex or the RuneScape Wiki. Please respect the API usage guidelines and terms of service.

常见问题

RuneScape Wiki RS3 是什么?

This MCP server provides AI assistants with real-time access to RuneScape 3 game data through the RuneScape Wiki APIs. It enables AI systems to retrieve current Grand Exchange prices, detailed item information (including stats, examine text, and alchemy values), historical price trends with configurable time intervals, and player statistics from the official hiscores across different game modes (normal, ironman, hardcore ironman). The server acts as a bridge between AI applications and RuneScape

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描123.0k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描123.0k

邮件模板

by alirezarezvani

Universal
热门

快速搭建生产可用的事务邮件系统:生成 React Email/MJML 模板,接入 Resend、Postmark、SendGrid 或 AWS SES,并支持本地预览、i18n、暗色模式、反垃圾优化与追踪埋点。

面向营销与服务场景,快速搭建高质量邮件模板,省去反复设计与切图成本,成熟度和社区认可都很高。

平台与服务
未扫描12.5k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
84.2k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.5k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
38.1k

评论