Stellaris-Modding-MCP-Server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Stellaris-Modding-MCP-Server by kongyo2 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
Stellaris-Modding-MCP-Server · Summary
An MCP server for Stellaris modding that provides game version info, CWTools configs, and searchable documentation through SteamCMD and GitHub APIs.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Stellaris-Modding-MCP-Server · Use cases
- Stellaris mod developers validating their triggers and effects against the latest game version
- Creating new mods with accurate documentation search capabilities
- Automating mod development workflows with access to current game configuration files
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
Stellaris-Modding-MCP-Server · Install
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"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.