Integrations
MCP servers, webhooks, APIs, and external service connections
Filesystem MCP Server
inactivemcp_server
MCP server for local filesystem access within allowed directories.
Config
{
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/opt/agents"
]
}GitHub MCP Server
activemcp_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)
activedatabase
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
}