MCP Catalogs
Home

Stellaris-Modding-MCP-Server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

Stellaris-Modding-MCP-Server
by kongyo2
everything
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3277
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis 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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

Stellaris-Modding-MCP-Server · Install

Installation

Via npm

npm install -g @kongyo2/stellaris-modding-mcp-server

From source

git clone <repository-url>
cd stellaris-modding-mcp-server
npm install
npm run start

Claude Desktop Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "stellaris-modding": {
      "command": "npx",
      "args": ["-y", "@kongyo2/stellaris-modding-mcp-server"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.