External: https://ai.gamblecodez.com/mcp | Token: gcz-mcp-2026
Localhost: http://localhost:7331/mcp (no token)
- Before any task, call
gcz.bootstrap({ project: "Runewager", client: "<agent name>" }). - CLI shells auto-run
/var/www/html/gcz/ai/mcp/bootstrap.shunlessGCZ_BOOTSTRAP_DISABLE=1. - Web coders must call
gcz.bootstrapmanually at session start. - At end of session, persist a summary with
unified.memory.set({ project: "Runewager", source: "<agent name>", key: "last_session_summary", value: {...} }). - If shared context changed, call
unified.context.write({ ... }).
{ "mcpServers": { "gcz": { "url": "http://localhost:7331/mcp" } } }{ "mcpServers": { "gcz": { "url": "https://ai.gamblecodez.com/mcp", "headers": { "Authorization": "Bearer gcz-mcp-2026" } } } }# Memory
unified.memory.set { project: "Runewager", key: "...", value: {...} }
unified.memory.get { project: "Runewager" }
# Todos
unified.todo.add { project: "Runewager", title: "...", priority: 5 }
unified.todo.list { project: "Runewager", status: "open" }
# Git
gitops.status { project: "runewager" }
gitops.summary { project: "runewager" }
gitops.log { project: "runewager", limit: 20 }
# Files
unified.file.read { path: "/var/www/html/Runewager/..." }
unified.file.list { path: "/var/www/html/Runewager" }
# Security
security.secrets.scan { project: "runewager" }
security.npm.audit { project: "runewager" }See /var/www/html/gcz/AGENTS.md for the complete tool reference.