Foundry VTT MCP Server
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., "@Foundry VTT MCP Serverroll a d20 for the rogue's stealth check"
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.
Foundry VTT MCP Server
Focused MCP server connecting an MCP-compatible agent to Foundry VTT v14 and D&D 5e.
Architecture
Hermes → MCP Server (stdio) → Sidecar (REST :30001) → Foundry (Socket.IO :30000)
↕
Same-origin reverse proxy /mcp-bridge ↔ MCP Bridge module (active GM client)The sidecar runs alongside Foundry and handles Socket.IO auth internally. The MCP server talks plain HTTP — no auth handshake, no session cookies, no internal protocol concerns. The optional MCP Bridge module supplies values prepared by Foundry's client runtime, such as derived AC, HP maximum, and spell-slot maxima; it requires an active GM browser session and communicates over a same-origin HTTPS /mcp-bridge long-poll route. It also performs confirmation-guarded direct HP and temporary-HP changes through the dnd5e Actor API.
Auth method: a private API key (X-API-Key header) between Hermes and the sidecar. The GM browser bridge does not use that key.
Related MCP server: Foundry VTT MCP Bridge
Quick Start
npm install
npm run build
npm startMCP client configuration
# Configure these environment values in your MCP client.
mcp_servers:
foundryvtt:
command: "node"
args: ["~/.hermes/mcp-servers/foundryvtt/dist/index.js"]
env:
FOUNDRY_URL: "http://foundry-sidecar-host:30001"
FOUNDRY_API_KEY: "<private-sidecar-api-key>"
FOUNDRY_WRITE_ENABLED: "true"
connect_timeout: 30Tools (36 total)
Read and service (22 tools)
Tool | Description |
| Confirm server availability |
| Actor/scene/item/combat/user counts |
| Foundry/system versions, active modules, and prepared-bridge GM responders |
| Search actors by name + optional type filter |
| Raw, unprepared actor data for debugging; embedded Items are opt-in |
| Concise raw 5e snapshot; derived fields may require Foundry UI confirmation |
| Prepared 5e values from an active GM Foundry client |
| Prepared HP, AC, conditions, and spell slots for all character actors |
| Paginated embedded Item list, filterable by name, type, and 2014/2024 source |
| Paginated embedded Activity list, filterable by Item, name, type, and rules source |
| Discovery-only inspection of one activity's targeting, consumption, rolls, and effects; never executes it |
| Report document shape and rules mix; not a combat-readiness check |
| Search world-level items by name + optional type filter |
| Full world-level Item document |
| All scenes with activation status |
| Tokens on a scene (positions, actors, disposition, vision) |
| Active combat: round, turn, sorted combatants, initiative |
| Recent chat messages, optional speaker filter |
| Full-text search journal entries by name + content |
| Journal entry with all page content |
| All users with roles and online status |
| Verify sidecar connectivity |
Dice (1 tool)
Tool | Description |
| Any formula: |
Previews (4 read-only tools)
Tool | Description |
| Calculate direct damage/healing through the GM bridge and return a short-lived confirmation token; does not change Foundry |
| Preview replacing temporary HP with an exact value through the GM bridge and return a short-lived confirmation token; does not change Foundry |
| Preview adding or removing one standard condition through the GM bridge; exhaustion is intentionally excluded |
| Read-only eligibility check for one exact, unambiguous embedded dnd5e utility activity with no external target; returns a short-lived confirmation token |
Write (9 tools, gated by FOUNDRY_WRITE_ENABLED)
Tool | Description |
| Execute exactly one previewed dnd5e utility activity through the GM bridge; dnd5e controls consumption, effects, and chat output |
| Replace an actor's temporary HP with a previewed exact value through the GM bridge; use 0 to clear it |
| Apply an exactly previewed standard-condition change through the GM bridge |
| Patch actor system attributes ( |
| Create a minimal actor; use Plutonium for complete 5e characters and creatures |
| Delete an actor by ID |
| Advance combat through the sidecar's current internal combat operation |
| Post to Foundry chat |
| Apply an exactly matching, previewed direct HP damage/healing change through dnd5e's |
Sidecar
The sidecar is a small Node.js Express server that runs in Docker alongside Foundry. It:
Authenticates with Foundry via the proven 4-step Socket.IO flow (using
extraHeaders: {Cookie}— notquery: {session}, which Foundry v14 rejects)Exposes REST endpoints that proxy to Foundry's Socket.IO protocol
Auto-restarts on failure (Docker
restart: unless-stopped)
Deployment components:
sidecar/— Dockerized sidecar servermodule/— active-GM prepared-data bridge moduletraefik/foundry-mcp-bridge.yml— an optional Traefik example for the same-origin bridge route
Any reverse proxy may be used. It must route the Foundry origin's /mcp-bridge path to the sidecar while preserving the browser's Foundry session cookie.
Environment:
FOUNDRY_URL=http://foundry:30000 # Docker service name
FOUNDRY_USERNAME=<foundry-service-account-name>
FOUNDRY_PASSWORD=<private-foundry-account-password>
PORT=30001
API_KEY=<private-sidecar-api-key>
FOUNDRY_WRITE_ENABLED=true # Must be set here as well as in the MCP client to enable mutationsEndpoints (sidecar)
Method | Path | Description |
GET |
| Health check |
POST |
| Verify and refresh the current world snapshot |
GET |
| Counts |
GET |
| Foundry/system metadata, active modules, and prepared-bridge responders |
GET |
| Search actors |
GET |
| Raw actor without embedded Items by default ( |
GET |
| Concise D&D 5e actor summary |
GET |
| Prepared D&D 5e actor summary; requires an active GM client with the bridge module |
GET |
| Prepared concise overview of all character actors; requires an active GM client |
POST |
| Read-only direct HP damage/healing preview; returns one-time confirmation token |
POST |
| Apply an exactly matching, previewed direct HP change through the active GM client |
POST |
| Read-only exact temporary-HP replacement preview; returns one-time confirmation token |
POST |
| Apply an exactly matching, previewed temporary-HP replacement through the active GM client |
POST |
| Read-only standard-condition change preview; returns one-time confirmation token |
POST |
| Apply an exactly matching, previewed standard-condition change through the active GM client |
POST |
| Validate one exact unambiguous dnd5e utility activity and issue a one-time confirmation token |
POST |
| Execute an exactly matching previewed dnd5e utility activity through the active GM client |
GET |
| Paginated embedded Item list |
GET |
| Paginated embedded Activity list |
GET |
| Concise discovery-only detail for one embedded Activity |
GET |
| 5e actor validation report |
POST |
| Create a minimal actor |
POST |
| Update actor system |
POST |
| Delete an actor |
GET |
| Search items |
GET |
| One item |
GET |
| All scenes |
GET |
| Scene tokens |
GET |
| Active combat |
POST |
| Advance turn |
GET |
| Chat messages |
POST |
| Post message |
GET |
| Search journal |
GET |
| One entry |
GET |
| All users |
/mcp-bridge is an internal browser-to-sidecar transport, not a general MCP API. A GM browser pairs by presenting its existing Foundry session cookie; the sidecar validates that session and issues an in-memory, per-client token that expires when the bridge goes idle. No shared API key is shipped in the module. The separate sidecar API key must be supplied privately through environment configuration and must never be committed.
Deploy and verify a Foundry host
The deployment scripts copy only the checked-in sidecar and bridge-module files. They back up every replaced remote file with a timestamp, validate Docker Compose, rebuild only foundry-sidecar, and never print credentials. Set the deployment paths for your host first:
export FOUNDRY_DEPLOY_TARGET="user@foundry-host"
export FOUNDRY_COMPOSE_DIR="/path/to/compose-directory"
export FOUNDRY_SIDECAR_DIR="/path/to/sidecar-directory"
export FOUNDRY_MODULE_DIR="/path/to/foundry/Data/modules/foundry-mcp-bridge"
# Optional: copy the included Traefik example. Omit for another reverse proxy.
export FOUNDRY_PROXY_CONFIG_DIR="/path/to/traefik/dynamic-config"# Sidecar health and Foundry connection only; safe before a GM refresh.
npm run deploy:foundry
# After hard-refreshing Foundry in an active GM browser session.
npm run smoke:foundry -- --require-bridgeThe smoke script uses the sidecar container's private API key internally, reports Foundry/system versions plus responder count, and does not mutate world data.
Foundry v14 Notes
Session cookies must use
extraHeaders: {Cookie}— notquery: {session}. Foundry v14 rejects query-param sessions (the standardfoundryvtt-mcpnpm package gets this wrong).modifyDocumentrequiresbroadcast: trueanduserIdfields in the request.Combat
turnis an index into Foundry's computed sort order, not the cached combatants array. The currentnext_turnendpoint remains an internal update and should be replaced by a rule-aware execution path before stable release.worldandmodifyDocumentare internal Socket.IO protocols — point releases may alter payloads.Array fields in document updates are replaced wholesale, not merged.
Maintenance
When Foundry updates:
The sidecar may need auth flow adjustments (isolated in
connect())The MCP server usually needs no changes (it just talks HTTP)
If
modifyDocumentpayload shape changes, update thePOSThandlers in the sidecar
Foundry Module Releases
The bridge module has a Foundry-compatible manifest and can be installed or updated from:
https://github.com/Hybridenishi/foundryvtt-mcp/releases/latest/download/module.json
Create its release asset after validating the build:
npm run package:module
gh release create v1.7.0 release/foundry-mcp-bridge.zip module/module.json \
--title "MCP Bridge v1.7.0" --notes "Prepared party overview, safe standard-condition changes, and server-side write gating."The ZIP contains module.json and scripts/ at its root, as required by Foundry's module installer.
This 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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Hybridenishi/foundryvtt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server