Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"stellaris-modding-mcp-server": {
"args": [
"-y",
"@kongyo2/stellaris-modding-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
ステラリスのmodding支援用MCPサーバーです。SteamCMD APIとGitHub APIを使用して、mod開発者に必要な最新情報を提供します。
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@kongyo2/stellaris-modding-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @kongyo2/stellaris-modding-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
The official MCP Server for the Mux API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Unity MCP Server — 268 tools for AI-assisted game development. Connect Claude, Cursor, or any MCP client to Unity Editor & Unity Hub. Scene management, GameObjects, components, builds, profiling, Shader Graph, Amplify, terrain, physics, NavMesh, animation, MPPM multiplayer & more. Free & open source by AnkleBreaker Studio.
A Model Context Protocol (MCP) server that gives Claude direct control over Strudel.cc for AI-assisted music generation and live coding.
MCP Security Weekly
Get CVE alerts and security updates for Stellaris Modding MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
[!WARNING] これは実験的なプロジェクトです。APIの仕様変更や、予期せぬエラーが発生する可能性があります。
ステラリスのmodding支援用MCPサーバーです。SteamCMD APIとGitHub APIを使用して、mod開発者に必要な最新情報を提供します。
stellaris-versionステラリスの現在のバージョン情報を包括的に取得します。
取得情報:
cwtools-configCWToolsのStellarisコンフィグルール(.cwt files)を取得します。
パラメータ:
version: "stable" (最新タグ) または "latest" (開発版) - デフォルト: "stable"file: 特定のファイル名またはパス(例: "common.cwt", "common/agreements.cwt")listOnly: trueの場合、ファイル一覧のみを表示 - デフォルト: false機能:
stellaris-searchOldEnt/stellaris-triggers-modifiers-effects-listリポジトリから最新のゲームドキュメントをキーワード検索します。
パラメータ:
docType: "triggers", "effects", "modifiers", "scopes", "localizations"のいずれかkeyword: 検索キーワードcontextLines: 前後に表示する行数(デフォルト: 2)機能:
stellaris-validate指定した要素が最新バージョンのドキュメントに存在するかを検証します。
パラメータ:
docType: "triggers", "effects", "modifiers", "scopes", "localizations"のいずれかelement: 検証する要素名(例: has_technology)機能:
git clone <this-repository>
cd stellaris-modding-mcp-server
npm install
npm run dev
これにより、MCPサーバーが起動し、CLIで対話的にテストできます。
npm run start
npm run test
npm run format
npm run lint
SteamCMD API を使用してゲームバージョン情報を取得:
以下のリポジトリからmodding関連情報を取得:
MIT License
バグ報告や機能要求は、GitHubのIssuesでお知らせください。プルリクエストも歓迎します。
# MCPクライアントでの使用例
stellaris-version
# 利用可能なファイル一覧を表示
cwtools-config --listOnly true
# 特定のファイルを取得
cwtools-config --file "common.cwt"
# サブディレクトリのファイルを取得
cwtools-config --file "common/agreements.cwt"
# 開発版を取得
cwtools-config --version "latest"
# triggersから "fleet" を検索
stellaris-search --docType "triggers" --keyword "fleet"
# effect "add_modifier" が有効か検証
stellaris-validate --docType "effects" --element "add_modifier"