npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

maplestorysea-mcp-server

v2.0.7

Published

NEXON MapleStory SEA API MCP Server for Claude Desktop - Complete character info, union details, guild data, rankings optimized for SEA servers

Downloads

187

Readme

MapleStory SEA MCP Server 🍁

Comprehensive MCP (Model Context Protocol) server for accessing NEXON MapleStory SEA Open API data. Provides structured access to character information, union details, guild data, rankings, and game mechanics through Claude Desktop and other MCP-compatible AI assistants.

✨ Features

  • Character Information: Detailed character stats, equipment, and basic info retrieval
  • Union System: Union raider configurations and ranking access
  • Guild Management: Guild information and member details lookup
  • Rankings: Various leaderboards and competitive data access
  • TypeScript Support: Full type safety and IntelliSense support
  • Comprehensive Logging: Detailed operation logging for debugging
  • Error Handling: Robust error handling with descriptive error messages
  • SEA Specific: Optimized for MapleStory SEA servers (Aquila, Bootes, Cassiopeia, Draco)

🚀 Quick Start

Using NPX (Recommended)

npx maplestorysea-mcp-server --api-key YOUR_NEXON_API_KEY

Installation

npm install -g maplestorysea-mcp-server

🖥️ Using with Claude Desktop

1. Get NEXON API Key

First, obtain an API key from the NEXON Open API Portal:

  1. Log in with your NEXON account
  2. Go to "Developer Center" → "Application Management"
  3. Click "Register New Application"
  4. Fill in application details and register
  5. Copy the generated API key

2. Locate Claude Desktop Configuration File

Configuration file locations by OS:

Windows:

%APPDATA%\Claude\claude_desktop_config.json

macOS:

~/Library/Application Support/Claude/claude_desktop_config.json

Linux:

~/.config/Claude/claude_desktop_config.json

3. Add MCP Server Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "maplestory-sea": {
      "command": "npx",
      "args": ["-y", "maplestorysea-mcp-server"],
      "env": {
        "NEXON_API_KEY": "your_api_key_here"
      }
    }
  }
}

4. Restart Claude Desktop

Close and restart Claude Desktop to load the new MCP server.

📖 Available Tools

Character Tools

  • get_character_basic_info - Get basic character information
  • get_character_stats - Get detailed character statistics
  • get_character_equipment - Get character equipment details
  • get_character_full_info - Get comprehensive character data
  • get_character_analysis - Get character analysis with recommendations
  • find_character_ranking - Find character's ranking position
  • get_job_class_info - Get detailed job class information and stats

Union Tools

  • get_union_info - Get union information
  • get_union_raider - Get union raider board details
  • get_union_ranking - Get union power rankings

Guild Tools

  • get_guild_info - Get guild basic information
  • search_guilds - Search for guilds with fuzzy matching
  • get_guild_ranking - Get guild rankings

Ranking Tools

  • get_overall_ranking - Get overall level rankings

Health Check

  • health_check - Check server and API status

🌏 SEA Server Support

This server is specifically designed for MapleStory SEA and supports all active worlds:

Active Worlds:

  • Aquila - Original SEA server
  • Bootes - Original SEA server
  • Cassiopeia - Original SEA server
  • Draco - Merged server (created 2019 from Delphinus + 6 other worlds)

Server History:

  • 2019: Major server merger consolidated 7 worlds (Delphinus, Eridanus, Izar, Fornax, Gemini, Hercules, Jynarvis) into Draco
  • Aquila, Bootes, and Cassiopeia remained as separate worlds
  • All worlds accessible through Singapore and Malaysia gateways

Job Classes:

  • Complete support for all 241 SEA job classes
  • Organized into 9 categories: Explorer, Cygnus Knights, Heroes, Resistance, Nova, Sengoku, Flora, Anima, Jianghu
  • Job advancement tracking and primary stat recommendations
  • SEA-specific job features and descriptions

Character Names:

  • English letters and numbers only (no Korean characters)
  • 2-13 characters in length

🔧 Configuration

Environment Variables

  • NEXON_API_KEY - Your NEXON API key (required)
  • LOG_LEVEL - Logging level (debug, info, warn, error)
  • NODE_ENV - Environment (development, production)

Rate Limiting

The server implements intelligent rate limiting optimized for SEA API:

  • 8 requests per second
  • 500 requests per minute
  • 12 concurrent requests (burst limit)
  • Exponential backoff for retries with jitter
  • Automatic queue management

Caching

Smart caching system with SEA-optimized TTL:

  • Character OCID: 2 hours (rarely changes)
  • Character basic info: 30 minutes
  • Character stats: 15 minutes
  • Equipment: 10 minutes
  • Union info: 30 minutes
  • Guild info: 1 hour
  • Rankings: 30 minutes (15 minutes for searches)

📊 Usage Examples

Get Character Information

Get basic info for character "SamplePlayer"

Search for Guilds

Search for guilds with name containing "Elite" in Draco world

Check Rankings

Get overall rankings for Draco world, Arch Mage class

Get Job Class Information

Get detailed information about Hero job class including primary stats and build recommendations

🛠️ Development

Prerequisites

  • Node.js 18+
  • NPM or Yarn
  • NEXON API key

Setup

git clone https://github.com/Moscato-Bianco/maplestorysea-mcp-server.git
cd maplestorysea-mcp-server
npm install
npm run build

Testing

npm test
npm run test:integration

Development Mode

npm run dev

📝 Documentation

Comprehensive Guides

🤝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

📄 License

MIT License - see LICENSE for details.

🔗 Related Links

⚠️ Important Notes

  • This server only supports MapleStory SEA API features
  • Korean-specific features (notices, probabilities, server status) are not available
  • Character names must use English characters only
  • API rate limits are strictly enforced

🆘 Support

If you encounter issues:

  1. Check your NEXON API key is valid
  2. Ensure you're using supported world names
  3. Verify character names use English characters only
  4. Check the logs for detailed error information

For bugs and feature requests, please open an issue on GitHub.