Stellaris-Modding-MCP-Server
by kongyo2·★ 2·Score 32
An MCP server for Stellaris modding that provides game version info, CWTools configs, and searchable documentation through SteamCMD and GitHub APIs.
Overview
The Stellaris Modding MCP Server is a specialized tool for Stellaris mod developers that leverages SteamCMD API and GitHub APIs to provide up-to-date information. It includes functionality to retrieve current game version information, fetch CWTools configuration files for mod validation, and search through the latest game documentation for triggers, effects, modifiers, scopes, and localizations. The server includes robust error handling with retry mechanisms to ensure stable operation when dealing with external APIs.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this if you're developing Stellaris mods and need real-time access to game documentation and version validation tools.
When NOT to choose this
Avoid if you're not working with Stellaris modding, as the tools are highly specialized for this specific game.
Tools this server exposes
4 tools extracted from the READMEstellaris-versionGet comprehensive version information for Stellaris including build ID, release dates, and available versions.
cwtools-configversion?: 'stable' | 'latest', file?: string, listOnly?: booleanRetrieve CWTools configuration files (.cwt) for Stellaris modding.
stellaris-searchdocType: 'triggers' | 'effects' | 'modifiers' | 'scopes' | 'localizations', keyword: string, contextLines?: numberSearch Stellaris documentation for triggers, effects, modifiers, scopes, or localizations by keyword.
stellaris-validatedocType: 'triggers' | 'effects' | 'modifiers' | 'scopes' | 'localizations', element: stringValidate if a specific game element (trigger, effect, etc.) exists in the latest Stellaris documentation.
Comparable tools
Installation
Installation
Via npm
npm install -g @kongyo2/stellaris-modding-mcp-serverFrom source
git clone <repository-url>
cd stellaris-modding-mcp-server
npm install
npm run startClaude Desktop Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"stellaris-modding": {
"command": "npx",
"args": ["-y", "@kongyo2/stellaris-modding-mcp-server"]
}
}
}FAQ
- What API rate limits should I be aware of?
- The GitHub API has a rate limit of 60 requests per hour for unauthenticated requests. If you need more requests, consider using authenticated API access.
- How often is the game documentation updated?
- The server retrieves documentation directly from the OldEnt/stellaris-triggers-modifiers-effects-list repository, ensuring you always have access to the latest version available on GitHub.
Compare Stellaris-Modding-MCP-Server with
Last updated · Auto-generated from public README + GitHub signals.