mcmod
Allows MCP integration with Codex CLI for accessing MCMod skills and combat rules.
Click on "Install 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: Grimoire
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kankrittapon/MCP-BRPG'
If you have feedback or need assistance with the MCP directory API, please join our Discord server