Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.72 KB

File metadata and controls

53 lines (40 loc) · 1.72 KB

Runewager AI Agent Configuration

MCP Server

External: https://ai.gamblecodez.com/mcp | Token: gcz-mcp-2026 Localhost: http://localhost:7331/mcp (no token)

Bootstrap Policy (Required)

  • Before any task, call gcz.bootstrap({ project: "Runewager", client: "<agent name>" }).
  • CLI shells auto-run /var/www/html/gcz/ai/mcp/bootstrap.sh unless GCZ_BOOTSTRAP_DISABLE=1.
  • Web coders must call gcz.bootstrap manually 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({ ... }).

Quick Connect

Claude Code CLI (on VPS)

{ "mcpServers": { "gcz": { "url": "http://localhost:7331/mcp" } } }

Claude Web / Remote

{ "mcpServers": { "gcz": { "url": "https://ai.gamblecodez.com/mcp", "headers": { "Authorization": "Bearer gcz-mcp-2026" } } } }

Key Tools for This Project

# 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" }

Full Docs

See /var/www/html/gcz/AGENTS.md for the complete tool reference.