Filesystem MCP Server

inactive
mcp_server

MCP server for local filesystem access within allowed directories.

Config
{
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-filesystem",
    "/opt/agents"
  ]
}

GitHub MCP Server

active
mcp_server

MCP server for GitHub operations: repo access, PR creation, issue management.

Config
{
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-github"
  ],
  "env": {
    "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
  }
}

Supabase (Primary)

active
database

Primary Supabase instance for task queue and state sync. Used by worker for polling and result storage.

Config
{
  "url_env": "SUPABASE_URL",
  "key_env": "SUPABASE_KEY",
  "tables": [
    "tasks",
    "agents",
    "heartbeats"
  ],
  "poll_interval_seconds": 5
}

Actions

Add Integration