mcmod
Allows MCP integration with Codex CLI for accessing MCMod skills and combat rules.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcmodlist all classes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCMod MCP Server — Setup & Usage Guide
1. Local Node Setup (Recommended For Development)
Docker is not required. Node.js 18 or newer is sufficient.
git clone https://github.com/kankrittapon/MCP-BRPG.git
cd MCP-BRPG
npm install
Copy-Item .env.example .env
npm run audit:all
npm startThe local defaults bind to 127.0.0.1:3001 and load data from ./data. Leave MCP_API_KEY
empty only for local development. Useful endpoints:
Health:
http://127.0.0.1:3001/SSE:
http://127.0.0.1:3001/sseTools:
http://127.0.0.1:3001/tools
Run npm run check in CI when the Wizard source catalog is expected to be complete. It exits with
an error while records remain partial or missing.
Related MCP server: AmiyaBot MCP Server
2. Optional Server/Docker Setup
# 1. Copy the MCMod folder to your server or clone it
# 2. Navigate to the mcp-server directory
cd /path/to/MCMod/mcp-server
# 3. Install dependencies
npm install
# 4. Create your .env file (DO NOT share this file)
cp .env.example .env
nano .env # or use any text editorInside .env, fill in:
SERVER_HOST=0.0.0.0
SERVER_PORT=3001
MCP_API_KEY=your_random_secret_key
MOD_DATA_ROOT=/path/to/MCModGenerate a random API key:
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"# 5. Start the server
npm startThe server will be available at: http://192.168.1.248:3001
3. Connect from Gemini CLI
Add to your Gemini CLI config (~/.gemini/config.json or settings.json):
{
"mcpServers": {
"mcmod": {
"transport": "sse",
"url": "http://192.168.1.248:3001/sse",
"headers": {
"x-api-key": "your_api_key_here"
}
}
}
}4. Connect from Claude CLI
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"mcmod": {
"transport": "sse",
"url": "http://192.168.1.248:3001/sse",
"headers": {
"x-api-key": "your_api_key_here"
}
}
}
}5. Connect from Codex CLI (OpenAI)
Add to your Codex CLI config:
{
"mcp_servers": [
{
"name": "mcmod",
"transport": "sse",
"url": "http://192.168.1.248:3001/sse",
"headers": {
"x-api-key": "your_api_key_here"
}
}
]
}6. Available MCP Tools
Tool | Description |
| List all classes (Wizard, Ninja) |
| List skills by class + tree (Main/Succession/Awakening) |
| Get full skill data by ID or name |
| Search by CC type, special damage, keyword |
| Get pixel icon as base64 PNG |
| Get combat ruleset (stats/offensive/special/defensive) |
| Inspect Wizard/Ninja source completeness, missing fields, and conflicts |
Audit commands:
npm run audit:wizard
npm run audit:ninja
npm run audit:allget_data_audit accepts class (Wizard, Ninja, or all), plus optional
tree and status filters. A skill remains partial until its rank fields and
source manifest are complete; skills without ranks are reported as missing.
7. Quick Test (curl)
# Health check
curl http://192.168.1.248:3001/
# Direct tool call (no SSE, just REST)
curl -X POST http://192.168.1.248:3001/call/get_skill \
-H "Content-Type: application/json" \
-H "x-api-key: your_api_key_here" \
-d '{"id": "wizard_fireball"}'
# Search by CC effect
curl -X POST http://192.168.1.248:3001/call/search_skills \
-H "Content-Type: application/json" \
-H "x-api-key: your_api_key_here" \
-d '{"cc_effect": "Floating", "class": "Ninja"}'
# Get World Core
curl -X POST http://192.168.1.248:3001/call/get_world_core \
-H "Content-Type: application/json" \
-H "x-api-key: your_api_key_here" \
-d '{"section": "offensive"}'8. Auto-start on Boot (Linux systemd)
# Create service file
sudo nano /etc/systemd/system/mcmod-mcp.service[Unit]
Description=MCMod MCP Server
After=network.target
[Service]
Type=simple
User=kanfullbuster
WorkingDirectory=/home/kanfullbuster/MCMod/mcp-server
ExecStart=/usr/bin/node server.js
Restart=on-failure
EnvironmentFile=/home/kanfullbuster/MCMod/mcp-server/.env
[Install]
WantedBy=multi-user.targetsudo systemctl enable mcmod-mcp
sudo systemctl start mcmod-mcp
sudo systemctl status mcmod-mcpThis server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for skill documentation, generated by doc2mcp.
Quality-ranked, cross-platform directory of AI coding skills, plugins and MCP servers.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables management of Minecraft servers through the MCSManager API. Supports executing server commands, checking player status, retrieving server information, and controlling game settings like weather.6 npm1MIT

AmiyaBot MCP Serverofficial
FlicenseNot gradedqualityAmaintenanceProvides MCP server and CLI for querying Arknights game data, including operator skills, glossary, and resource updates.3-- FlicenseNot gradedqualityDmaintenanceAn MCP server that provides structured game data and scraped guides for video games, enabling natural language queries via Claude Code skills. Currently supports Clair Obscur: Expedition 33 with tools to search pictos, weapons, bosses, and more.-

SagaSmith D&D MCPofficial
AlicenseNot gradedqualityFmaintenanceA local MCP server for Dungeons & Dragons campaign management, combining core runtime with skill and module-generation packs. It enables campaign creation, module generation and import, rule and skill searching via tools, resources, and prompts.Apache 2.0