Integration Quest
Enables playing a Workato-themed text-based RPG through MCP tools, allowing users to explore dungeons, battle enemies, and manage character progression in an integration-themed adventure.
README
<p align="center"> <img src="Integration-Quest-Logo.png" alt="Integration Quest Logo" width="400"> </p>
Integration Quest: A Workato RPG
Descend into the Legacy System Dungeons. Connect the disconnected. Automate the manual. Defeat the bugs that plague enterprise workflows.
A Workato-themed text-based RPG implemented as a Python MCP (Model Context Protocol) server. Battle through legacy systems, API errors, and enterprise chaos as an Integration Hero!
Table of Contents
- The Story
- Installation
- Playing the Game
- Character Classes
- Enemies
- Items
- Game Mechanics
- Project Structure
- Development
- Contributing
- License
- Credits
The Story
You are an Integration Hero, venturing into the depths of the Integration Dungeon where legacy systems lurk, APIs fail, and technical debt accumulates. Armed with your trusty HTTP Client and determination, you must connect the disconnected, transform the untransformed, and bring order to enterprise chaos.
Will you become a legendary Integration Engineer, mastering bulk operations? A powerful Recipe Builder, wielding formula transformations? A cunning API Hacker, finding workarounds for every obstacle? Or a resilient Support Engineer, recovering from any failure?
The choice is yours. The legacy systems await.
Installation
Prerequisites
- Python 3.11 or higher
- uv package manager
Setup
-
Install uv (if not already installed):
# macOS and Linux curl -LsSf https://astral.sh/uv/install.sh | sh # Windows powershell -c "irm https://astral.sh/uv/install.ps1 | iex" -
Clone the repository:
git clone https://github.com/MattCarpenter-Workato/workato-integration-quest.git cd workato-integration-quest -
Install dependencies:
uv syncNote: Package discovery warnings are safe to ignore.
Playing the Game
Quick Start
Choose your preferred play mode:
# Terminal Mode (Interactive CLI)
uv run python play.py
# Local MCP Server (for Claude Desktop)
uv run python server.py
# Remote MCP Server (HTTP)
uv run python remote_server.py
New Player Guide
First time playing? Use the AI Game Guide to learn the mechanics. Copy the contents of game_guide_prompt.md into your conversation with Claude when using the MCP server. The guide will teach you game mechanics, explain Workato concepts in context, and provide strategic advice tailored to your experience level.
Play Modes
Terminal Mode
Play directly in your terminal with an interactive command-line interface:
uv run python play.py
Example session:
>>> explore
šļø THE INTEGRATION HUB
You stand at the entrance...
>>> attack bug
š² Rolled 1d4: [3] = 3
āļø You hit Bug for 3 damage!
>>> status
š Alex the Mage - Level 1
ā¤ļø Uptime: 90/90
Claude Desktop (MCP Server)
Add to your claude_desktop_config.json:
{
"mcpServers": {
"integration-quest": {
"command": "uv",
"args": [
"--directory",
"/path/to/workato-integration-quest",
"run",
"python",
"server.py"
]
}
}
}
Important: Update the path to match your actual installation location.
Claude Code (CLI)
Add the MCP server to your Claude Code configuration:
claude mcp add integration-quest -- uv --directory /path/to/workato-integration-quest run python server.py
Or manually edit ~/.claude/settings.json:
{
"mcpServers": {
"integration-quest": {
"command": "uv",
"args": [
"--directory",
"/path/to/workato-integration-quest",
"run",
"python",
"server.py"
]
}
}
}
After configuration, restart Claude Code and the game tools will be available.
Remote MCP Server
Run the game as a remote MCP server accessible over HTTP:
uv run python remote_server.py
Connect via Claude Desktop:
{
"mcpServers": {
"integration-quest-remote": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:8000/sse"]
}
}
}
Environment Variables:
| Variable | Default | Description |
|---|---|---|
MCP_SERVER_PORT |
8000 |
Server port |
MCP_SERVER_HOST |
0.0.0.0 |
Server host |
FastMCP Cloud (Hosted)
Deploy Integration Quest to the cloud for free with FastMCP Cloud:
- Fork this repository to your GitHub account
- Sign up at fastmcp.cloud with GitHub
- Create a new project with entrypoint:
remote_server.py:mcp - Connect via:
npx mcp-remote https://your-project.fastmcp.app/mcp
See DEPLOY_FASTMCP_CLOUD.md for detailed instructions.
Available Commands
| Command | Description |
|---|---|
create_character |
Create your Integration Hero |
view_status |
View stats, inventory, and status |
explore |
Explore current room |
examine |
Examine enemies or items in detail |
move |
Navigate north/south/east/west |
attack |
Attack an enemy with skills |
defend |
Take defensive stance |
use_item |
Use consumables from inventory |
pickup |
Pick up items from room |
equip |
Equip weapons and armor |
rest |
Recover HP/MP (20% encounter chance) |
flee |
Attempt to escape combat |
save_game |
Create a checkpoint |
load_game |
Restore from checkpoint |
Character Classes
Warrior (Integration Engineer)
"Process more. Process faster."
| Attribute | Value |
|---|---|
| Primary Stat | Throughput (STR) |
| HP Modifier | +20 |
| MP Modifier | -10 |
Skills:
- Bulk Upsert ā Hit all enemies at once
- Force Sync ā Ignore armor completely
- Throughput Surge ā Take two actions per turn
Mage (Recipe Builder)
"Everything is just a transformation away."
| Attribute | Value |
|---|---|
| Primary Stat | Formula Power (INT) |
| HP Modifier | -10 |
| MP Modifier | +30 |
Skills:
- Formula Transform ā Rewrite enemy logic
- Lookup Table Strike ā Guaranteed hit +50% damage
- Callable Recipe ā Summon automation ally
Rogue (API Hacker)
"There's always a workaround."
| Attribute | Value |
|---|---|
| Primary Stat | Rate Agility (DEX) |
| HP Modifier | 0 |
| MP Modifier | 0 |
Skills:
- Workaround ā Bypass armor, double damage
- Rate Limit Dance ā Evade all attacks
- Custom Connector ā Exploit weaknesses for 3x damage
Cleric (Support Engineer)
"No system stays down on my watch."
| Attribute | Value |
|---|---|
| Primary Stat | Error Resilience (CON) |
| HP Modifier | +10 |
| MP Modifier | +15 |
Skills:
- Error Handler ā Auto-revive from 0 HP (once per combat)
- Job Recovery ā Restore 40% max HP
- Escalation ā Call backup ally
Enemies
Common (Depth 1-3)
| Enemy | Description |
|---|---|
| Bug | A crawling syntax error |
| Timeout Gremlin | Loves slow APIs |
| Auth Zombie | Expired token, still walking |
| Null Pointer Specter | Expected data, found void |
| Missing Field Imp | Required field not provided |
Uncommon (Depth 4-6)
| Enemy | Description |
|---|---|
| Rate Limit Guardian | Inflicts Rate Limited status |
| Data Mismatch Hydra | Attacks with 3 heads |
| Schema Drift Phantom | Randomizes stats |
| Pagination Void | Steals inventory items |
| Infinite Loop Serpent | Attacks twice per turn |
Rare (Depth 7-9)
| Enemy | Description |
|---|---|
| Undocumented API | Immune until examined |
| Frozen Job Golem | 50% chance to skip turn |
| Webhook Storm | AOE damage |
| Legacy Code Lich | Resurrects defeated enemies |
| Spaghetti Code Horror | Tangles your skills |
Bosses (Every 5th Depth)
| Boss | Depth | Description |
|---|---|---|
| SAP Config Beast | 5 | 47 mandatory fields |
| The Legacy Mainframe | 10 | Running since 1987 |
| The Monolith | 15 | All services in one |
| Technical Debt Dragon | 20 | Every shortcut returns |
Items
Weapons (Connectors)
| Weapon | Tier | Damage | Special |
|---|---|---|---|
| HTTP Client | Common | 1d4 | Starting weapon |
| Slack Webhook | Common | 1d6 | +2 vs Communication |
| Salesforce Connector | Uncommon | 2d6 | Bulk Mode: Hit all |
| NetSuite Blade | Rare | 3d6 | Ignores 50% armor |
| SAP RFC Cannon | Legendary | 4d8 | Stuns for 1 turn |
| Workato SDK Staff | Legendary | 3d10 | +5 all stats |
Armor (Error Handlers)
| Armor | Tier | Protection | Effect |
|---|---|---|---|
| Basic Logging | Common | +1 | See enemy HP |
| Try/Catch Vest | Common | +2 | Survive fatal hit once |
| Retry Logic Armor | Uncommon | +4 | Auto-retry defenses |
| Circuit Breaker Shield | Rare | +6 | Block cascading damage |
| Observability Plate | Legendary | +10 | See all enemy stats |
Consumables
| Item | Effect |
|---|---|
| Job Retry Potion | Restore 50 Uptime |
| API Credit Refill | Restore 30 API Credits |
| Token Refresh Vial | Cure "Auth Expired" status |
| API Documentation | Reveal enemy weakness |
| Graceful Degradation Bomb | Guaranteed escape |
| Bulk Operation Scroll | Next attack hits all |
| Recipe Fragment | Collect 3 for +5 max HP |
| Golden Ticket | Skip to next boss room |
Game Mechanics
Stats (Workato Themed)
| Stat | Theme | Description |
|---|---|---|
| Uptime | HP | Integration health (0 = system down) |
| API Credits | MP | Fuel for powerful skills |
| Throughput | STR | Records processed per action |
| Formula Power | INT | Transformation complexity |
| Rate Agility | DEX | Avoiding 429 errors |
| Error Resilience | CON | Recovery from failures |
Room Types
| Type | Theme | Description |
|---|---|---|
| Corridor | Pipeline | Data flows through cables |
| Chamber | App Hub | Vast application instances |
| Treasure | Data Lake | Perfectly normalized JSON |
| Trap | Legacy System | SOAP envelopes and XML namespaces |
| Boss | Core System | Ultimate integrations |
Project Structure
workato-integration-quest/
āāā server.py # FastMCP server + all 14 tools
āāā play.py # Terminal mode CLI interface
āāā remote_server.py # Remote MCP server (HTTP/SSE)
āāā config.py # Game configuration and constants
āāā pyproject.toml # Python project configuration
āāā requirements.txt # Python dependencies
āāā game_guide_prompt.md # Full AI guide system prompt
āāā game_guide_prompt_short.md # Condensed guide prompt
āāā models/
ā āāā hero.py # Hero, stats, inventory
ā āāā combat.py # Combat state, enemies
ā āāā world.py # Room, dungeon map
ā āāā items.py # Weapons, armor, consumables
āāā systems/
ā āāā combat.py # Damage calc, turn order
ā āāā generation.py # Procedural dungeon generation
ā āāā progression.py # XP, leveling, skill unlocks
ā āāā effects.py # Status effect processing
ā āāā dice.py # Dice rolling utilities
āāā data/
ā āāā enemies.json # 20+ enemy definitions
ā āāā items.json # Weapons, armor, consumables
ā āāā descriptions.json # Room templates
ā āāā skills.json # Class skills
āāā tests/
āāā test_dice.py # Dice rolling unit tests
āāā test_progression.py # Progression system tests
Development
Running Tests
# Run all function tests (31 tests)
uv run python test_all_functions.py
# Run unit tests with pytest
uv run pytest tests/
Adding Content
| Content Type | File |
|---|---|
| Enemies | data/enemies.json |
| Items | data/items.json |
| Skills | data/skills.json |
| Room Descriptions | data/descriptions.json |
Contributing
Contributions are welcome! Here's how you can help:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Guidelines
- Follow existing code style and conventions
- Add tests for new features
- Update documentation as needed
- Keep commits focused and atomic
Ideas for Contributions
- New enemy types with unique mechanics
- Additional character classes
- New weapons, armor, and consumables
- Quality of life improvements
- Bug fixes and optimizations
License
This project is licensed under the MIT License. See the LICENSE file for details.
MIT License
Copyright (c) 2024 Matt Carpenter
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Credits
Built with:
- FastMCP 2.0 ā Python MCP server framework
- Pydantic ā Data validation
- uv ā Fast Python package manager
<p align="center"> <i>"Every successful integration is a dungeon conquered. Every bug fixed is a villain defeated. You are the hero the enterprise needs."</i> <br><br> <b>Now venture forth, Integration Hero, and may your APIs always return 200 OK!</b> </p>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.