rpg-mcp
RPG game engine that lets AI run tabletop sessions without hallucinating mechanics. SQLite-backed persistence, D\&D 5e-style combat, procedural world generation, and deterministic dice.
README
mnehmos.rpg.mcp: Agentic Embodied Simulation Kernel
A rules-enforced RPG backend that turns any LLM into a game master who can't cheat.
What Is This? (Start Here)
You are the player. The AI is the dungeon master.
You talk to an AI (Claude, GPT, etc.) in natural language. You say things like "I attack the goblin" or "I search the room for traps." The AI narrates what happens and describes the world.
The difference from pure AI storytelling: This engine enforces the rules. When you attack, it actually rolls dice, checks armor class, calculates damage, and updates HP in a real database. The AI can't just decide you hit or miss—the math happens, and both you and the AI see the result.
What can you actually do?
- Explore procedurally generated worlds with 28+ biome types
- Fight enemies using D&D 5e-style combat (initiative, AC, damage rolls, death saves)
- Cast spells with real slot tracking—if you're out of slots, you can't cast
- Manage inventory with equipment slots, weight, and item properties
- Complete quests with tracked objectives and rewards
- Interact with NPCs who remember your conversations across sessions
- Everything persists—close the game, come back tomorrow, your character is exactly where you left them
Who is this for?
- Solo RPG players who want AI-driven adventures with mechanical integrity
- People frustrated with AI RPGs that fall apart when you ask "wait, how much HP do I have?"
- Developers building AI game integrations who need a reference implementation
How do I play?
- Install the MCP server (see Installation below)
- Connect it to Claude Desktop (or any MCP-compatible client)
- Tell the AI: "Let's start a new game. Create a character for me."
- Play naturally—the AI handles narration, the engine handles mechanics
v1.0 Release (January 2026)
85% Tool Reduction: 195 → 28 Consolidated Tools
This release consolidates 195 individual tools into 28 action-based tools using:
- Action enums - Each tool handles multiple operations via an
actionparameter - Fuzzy matching - Typo-tolerant action matching with suggestions
- Guiding errors - Clear feedback when actions don't match
Before: create_character, get_character, update_character, delete_character, list_characters...
After: character_manage with actions: create, get, update, delete, list, search
Key Metrics
| Metric | Before | After | Change |
|---|---|---|---|
| MCP Tools | 195 | 28 | 85.6% reduction |
| Tests | 1,242 | 2,080+ | +67% coverage |
| Token overhead | ~50K | ~6-8K | 85% reduction |
Meta-Tools for Discovery
Two special tools help LLMs discover and use the consolidated tools:
| Tool | Purpose |
|---|---|
search_tools |
Search tools by keyword, category, or capability |
load_tool_schema |
Load full parameter schema before first use |
Architecture Philosophy
This engine implements the Event-Driven Agentic AI Architecture:
┌─────────────────────────────────────────────────────────────────────────────────────────┐
│ │
│ EVENT │
│ │ │
│ ▼ │
│ ┌───────────┐ ┌───────────┐ ┌────────────┐ ┌───────────┐ ┌─────────┐ │
│ │ OBSERVE │ ──▶ │ ORIENT │ ──▶ │ DECIDE │ ──▶ │ ACT │ ──▶ │VALIDATE │ │
│ │ │ │ │ │ │ │ │ │ │ │
│ │ MCP Read │ │ LLM Brain │ │Orchestrator│ │ MCP Write │ │ Engine │ │
│ │ Tools │ │ Analyze │ │ Plan │ │ Tools │ │ Rules │ │
│ └───────────┘ └───────────┘ └────────────┘ └───────────┘ └────┬────┘ │
│ ▲ │ │
│ │ │ │
│ └───────────────────────────────────────────────────────────────────────┘ │
│ WORLD STATE │
│ (updates & loops) │
│ │
└─────────────────────────────────────────────────────────────────────────────────────────┘
The Embodiment Model
| Biological System | RPG-MCP Component | Role |
|---|---|---|
| Brain | LLM Agent (external) | Strategic reasoning, planning, interpretation |
| Nervous System | Engine + Orchestrator | Validates intent, enforces constraints, routes actions |
| Reflex Arc | Constraint Validator | Blocks impossible actions before execution |
| Sensory Organs | Observation Tools | getObservation, queryEntities, getWorldSnapshot |
| Muscles | Action Tools | proposeAction, moveEntity, attack, interact |
| Environment | World State + Physics | SQLite-persisted, deterministic, forkable reality |
Key invariant: LLMs propose intentions. The engine validates and executes. LLMs never directly mutate world state.
Consolidated Tools Reference (28 Tools)
Character & Party
| Tool | Actions | Description |
|---|---|---|
character_manage |
create, get, update, delete, list, search | Full character CRUD with D&D stat blocks |
party_manage |
create, get, update, delete, add_member, remove_member, set_leader, context | Party management and member operations |
Combat System
| Tool | Actions | Description |
|---|---|---|
combat_manage |
create, get, end, load, advance, death_save, lair_action, add_participant, remove_participant | Encounter lifecycle and initiative |
combat_action |
attack, cast, move, dash, dodge, disengage, help, ready | Combat actions with full D&D 5e rules |
combat_map |
get_terrain, set_terrain, get_positions, calculate_aoe | Tactical grid and terrain management |
Inventory & Economy
| Tool | Actions | Description |
|---|---|---|
item_manage |
create, get, update, delete, list, search | Item template CRUD |
inventory_manage |
give, remove, transfer, equip, unequip, use | Inventory operations between characters |
corpse_manage |
create, get, list, loot, harvest, advance_decay, cleanup | Death and loot mechanics |
theft_manage |
steal, check_stolen, check_recognition, report | Theft with heat tracking |
World & Spatial
| Tool | Actions | Description |
|---|---|---|
world_manage |
generate, get, update, list, delete | Procedural world generation |
world_map |
get_overview, get_region, patch, preview | Map queries and modifications |
spatial_manage |
look, move, generate_room, get_exits, list_rooms | Dungeon navigation and room networks |
Quests & NPCs
| Tool | Actions | Description |
|---|---|---|
quest_manage |
create, get, list, assign, complete, fail, abandon, add_objective, update_objective | Quest lifecycle management |
npc_manage |
get_relationship, update_relationship, record_memory, get_history, interact | NPC memory and social interactions |
aura_manage |
create, list, get_affecting, process, remove, expire | Area effects and buffs/debuffs |
Magic & Rest
| Tool | Actions | Description |
|---|---|---|
scroll_manage |
use, create, identify, get_dc, get_details | Scroll mechanics |
rest_manage |
long_rest, short_rest | HP and spell slot recovery |
concentration_manage |
check_save, break, get_state, check_duration | Spell concentration tracking |
Utility & Meta
| Tool | Actions | Description |
|---|---|---|
secret_manage |
create, get, list, update, delete, reveal, check_conditions | DM secrets with reveal conditions |
narrative_manage |
add, search, update, get, delete, get_context | Story notes and session history |
improvisation_manage |
resolve_stunt, apply_effect, get_effects, remove_effect, advance_duration, attempt_synthesis | Rule of Cool and custom effects |
math_manage |
dice_roll, probability, algebra, physics | Dice and calculations |
strategy_manage |
create_nation, get_state, propose_alliance, claim_region | Grand strategy simulation |
turn_manage |
init, get_status, submit_actions, mark_ready, poll_results | Async turn management |
spawn_manage |
spawn_character, spawn_location, spawn_encounter, spawn_preset_location, spawn_tactical | Entity and encounter spawning |
session_manage |
initialize_session, get_context | Session state management |
travel_manage |
travel, loot, rest | Party movement and field actions |
batch_manage |
create_characters, create_npcs, distribute_items, execute_workflow | Bulk operations |
Installation
Option 1: npm (Recommended)
npm install mnehmos.rpg.mcp
Option 2: Standalone Binaries
Download pre-built binaries from Releases:
# Windows
.\rpg-mcp-win.exe
# macOS (Intel)
chmod +x rpg-mcp-macos && ./rpg-mcp-macos
# macOS (Apple Silicon)
chmod +x rpg-mcp-macos-arm64 && ./rpg-mcp-macos-arm64
# Linux
chmod +x rpg-mcp-linux && ./rpg-mcp-linux
Option 3: From Source
git clone https://github.com/Mnehmos/rpg-mcp.git
cd rpg-mcp
npm install
npm run build
npm test # 2080+ tests should pass
MCP Client Configuration
Claude Desktop / MCP Clients:
{
"mcpServers": {
"rpg-mcp": {
"command": "npx",
"args": ["mnehmos.rpg.mcp"]
}
}
}
Using Binary:
{
"mcpServers": {
"rpg-mcp": {
"command": "path/to/rpg-mcp-win.exe"
}
}
}
Core Systems
Combat & Encounters
- Initiative tracking with advantage/disadvantage
- Spatial combat with grid positioning and collision
- Opportunity attacks with reaction economy
- Death saving throws (D&D 5e rules)
- Damage resistance/vulnerability/immunity
- Legendary creatures with lair actions and legendary resistances
- Encounter presets - Pre-balanced encounters by party level
Magic System
- 15+ SRD spells (Magic Missile, Fireball, Cure Wounds, etc.)
- Spell slot tracking with class-based progression
- Warlock pact magic with short rest recovery
- Concentration tracking
- Anti-hallucination validation - LLMs cannot cast spells they don't know
Theft & Economy
- Stolen item tracking with heat levels (burning → cold)
- Witness recording for theft detection
- Fence NPCs with buy rates and heat capacity
- Item recognition - original owners detect their stolen goods
NPC Memory
- Relationship tracking (familiarity + disposition)
- Conversation memory with importance levels
- Context injection for LLM prompts
- Interaction history across sessions
Improvisation Engine
- Rule of Cool stunts - "I kick the brazier into the zombies"
- Custom effects - Divine boons, curses, transformations
- Arcane synthesis - Dynamic spell creation with wild surge risk
Project Structure
src/
├── schema/ # Zod schemas: entities, actions, world state
├── engine/
│ ├── combat/ # Encounters, initiative, damage, death saves
│ ├── spatial/ # Grid, collision, movement
│ ├── worldgen/ # Procedural generation (28+ biomes)
│ └── strategy/ # Nation simulation
├── data/
│ ├── creature-presets.ts # 1100+ creature templates
│ ├── encounter-presets.ts # 50+ balanced encounters
│ └── items/ # PHB weapons, armor, magic items
├── storage/
│ ├── migrations.ts # SQLite schema definitions
│ └── repos/ # Repository pattern for persistence
├── server/
│ ├── consolidated/ # 28 action-based tools
│ ├── consolidated-registry.ts # Tool registration
│ └── meta-tools.ts # search_tools, load_tool_schema
└── utils/
├── fuzzy-enum.ts # Action matching with typo tolerance
└── schema-shorthand.ts # Token-efficient parsing
tests/ # 2080+ tests mirroring src/ structure
docs/ # White paper and LLM spatial guide
Design Principles
-
LLMs propose, never execute The brain suggests; the nervous system validates.
-
All action is tool-mediated No direct world mutation. Every change flows through MCP tools.
-
Validation precedes observation Act → Validate → Observe. The reflex arc pattern.
-
Deterministic outcomes Same inputs → same outputs. Always reproducible.
-
Schema-driven everything Zod validates all data at boundaries. Type safety end-to-end.
-
Anti-hallucination by design LLMs cannot cast spells they don't know or claim damage they didn't roll.
-
Token efficiency 28 consolidated tools with action routing reduce context overhead by 85%.
-
Guiding errors Invalid actions return suggestions, not just failures.
Test Coverage
npm test
# 2080+ tests passing
# 85+ test files
# Coverage across all 28 consolidated tools
Contributing
Contributions welcome! Please:
- Fork the repo
- Create a feature branch (
git checkout -b feature/your-feature) - Write tests for new functionality
- Follow existing code style (TypeScript + Zod + tests)
- Submit a pull request
Roadmap
- [x] Full spellcasting system with validation
- [x] Theft and fence economy
- [x] Corpse and loot mechanics
- [x] NPC memory and relationships
- [x] Improvisation engine
- [x] Tool consolidation (195 → 28)
- [x] Fuzzy action matching
- [x] Preset systems (creatures, encounters, locations)
- [ ] WebSocket real-time subscriptions
- [ ] Dialogue tree system
- [ ] Cover mechanics in combat
- [ ] Quest chains with prerequisites
License
ISC — Use freely, attribution appreciated.
Related
- Model Context Protocol Specification
- Quest Keeper AI — Desktop AI dungeon master using this engine
Documentation
- CLAUDE.md - Development instructions
- docs/WHITE_PAPER.md - Design philosophy and architecture
- docs/LLMSpatialGuide.md - LLM spatial navigation guide
<p align="center"> <em>"AI-native autonomic organisms capable of maintaining and improving themselves in complex environments"</em> </p>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。