← Reddit

Built a TTRPG image prompt manager with Claude Code + custom agents — just shipped MCP support (21 tools)

Reddit · procionegobbo · June 14, 2026
Chimera Forge, a tool for managing AI image generation prompts in tabletop RPG campaigns, was built using a multi-agent workflow that breaks feature development into specification, user stories, and implementation stages. The platform addresses visual consistency challenges by allowing users to define personas, locations, and objects once and reference them across scenes with dedicated tags. The recently released MCP server integration exposes 21 tools for managing the library and generating prompts directly from Claude Desktop or Code, available as a free invite-only beta.

Detailed Analysis

Chimera Forge, a web-based prompt management tool for tabletop RPG campaigns, represents an increasingly sophisticated category of AI-assisted creative tooling built atop Claude Code. Developed by a solo builder and deployed at chimera-forge.it, the application solves a concrete pain point in AI image generation workflows: maintaining visual consistency when the same character, location, or object must appear across multiple generated images in an ongoing campaign. Rather than manually re-describing visual attributes each time, Chimera Forge allows users to define canonical persona, location, and object entries once, then reference them in scene prompts using lightweight shorthand tags such as `#p:slug` and `#l:slug`. The system then assembles complete, coherent prompts automatically — a structured archival approach that trades improvisation for repeatability.

What distinguishes this project from a typical Claude Code experiment is the deliberate multi-agent pipeline the developer constructed to govern the full feature lifecycle. Three discrete agents — a spec-builder, a story-creator, and a laravel-feature-builder — form a sequential handoff chain that transforms rough ideas into INVEST-compliant user stories with Gherkin acceptance criteria, and then into tested, implemented features. This architecture reflects a maturing philosophy among power users of Claude Code: rather than treating the AI as an interactive pair programmer, they are engineering structured workflows where each agent operates within a tightly scoped responsibility. The developer's stated constraint — preserving code legibility and human modifiability at each step — underscores a broader concern in agentic development about avoiding lock-in to AI intermediation for routine maintenance tasks.

The most technically significant development in this release is the addition of a 21-tool Model Context Protocol (MCP) server, which exposes Chimera Forge's full library management and prompt generation capabilities to any MCP-compatible client, including Claude Desktop and Claude Code itself. This means users can manage personas, locations, and scenes, as well as generate fully assembled prompts, entirely through natural language interactions within their existing Claude environment, without ever opening the web interface. The MCP configuration is minimal — a single HTTP endpoint with bearer token authentication — reflecting the protocol's design goal of low-friction integration. The tool stack (Laravel, MariaDB, Redis, OpenRouter) is conventional and production-grade, suggesting the project is built for durability rather than rapid prototyping.

The emergence of projects like Chimera Forge illustrates a broader pattern in the post-Claude Code ecosystem: domain-specific creative professionals are beginning to build persistent, structured infrastructure around AI generation workflows rather than relying on ephemeral, session-by-session prompting. TTRPG content creation is a particularly apt domain for this because campaigns are long-running, character-dense narratives where visual coherence compounds in value over time. The shift from ad-hoc prompting to archival, tag-driven prompt assembly mirrors how software teams moved from inline SQL to ORM-managed schemas — trading flexibility for consistency and maintainability at scale.

More broadly, the project reflects the accelerating adoption of MCP as a connective standard between specialized tools and large language model interfaces. By exposing 21 structured tools over MCP, Chimera Forge effectively transforms a niche creative utility into a first-class citizen of the Claude tooling ecosystem, accessible to any workflow that supports the protocol. As more developers follow this pattern — building domain-specific applications with MCP servers as an intentional output layer — the practical surface area of what Claude can act upon in the real world expands significantly, moving the model closer to functioning as a general-purpose operator of specialized creative and professional infrastructure.

Read original article →