Super Subagents
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GH_TOKEN | No | Single token fallback. | |
| CODEX_MODEL | No | Default model for Codex tasks. | o4-mini |
| ENABLE_OPUS | No | Show claude-opus-4.6 in tool descriptions. | false |
| GH_PAT_TOKEN | No | Fallback PAT token(s), comma-separated. | |
| GITHUB_TOKEN | No | Single token fallback. | |
| CODEX_API_KEY | No | API key for Codex provider. | |
| CODEX_USE_SDK | No | Force legacy SDK mode instead of app-server protocol. | false |
| OPENAI_API_KEY | No | API key for Codex provider. | |
| PROVIDER_CHAIN | No | Provider selection order. Prefix ! = fallback-only. | codex,copilot,!claude-cli |
| DEBUG_SDK_EVENTS | No | Log all Copilot SDK events. | false |
| GITHUB_PAT_TOKENS | No | Comma-separated PAT tokens for multi-account rotation. | |
| CODEX_SANDBOX_MODE | No | Sandbox mode: read-only, workspace-write, danger-full-access. | workspace-write |
| GITHUB_PAT_TOKEN_1 | No | Numbered PAT token (alternative to comma-separated). Additional numbers supported. | |
| DEBUG_NOTIFICATIONS | No | Log MCP notification errors to stderr. | false |
| MCP_TASK_TIMEOUT_MS | No | Default task timeout in milliseconds. | 1800000 |
| DEBUG_CLAUDE_FALLBACK | No | Verbose logging for Claude Agent SDK fallback path. | false |
| DISABLE_CODEX_FALLBACK | No | Disable Codex SDK in the provider chain. | false |
| MCP_TASK_STALL_WARN_MS | No | No-output warning threshold. | 900000 |
| MCP_TASK_TIMEOUT_MAX_MS | No | Maximum allowed timeout. | 3600000 |
| MCP_TASK_TIMEOUT_MIN_MS | No | Minimum allowed timeout. | 900000 |
| DISABLE_CLAUDE_CODE_FALLBACK | No | Disable automatic fallback to Claude Agent SDK. | false |
| MAX_CONCURRENT_CODEX_SESSIONS | No | Max simultaneous Codex sessions. | 5 |
| MAX_CONCURRENT_CLAUDE_FALLBACKS | No | Max simultaneous Claude sessions. | 3 |
| BROKEN_PIPE_FORCE_EXIT_TIMEOUT_MS | No | Max wait time for graceful shutdown after broken pipe. | 15000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tasks | {
"list": {},
"cancel": {}
} |
| tools | {
"listChanged": true
} |
| resources | {
"subscribe": true,
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| launch-super-coderA | Launch an autonomous coding agent for implementation, bug fixes, and refactoring. Runs in COMPLETE ISOLATION — the prompt + context_files are its ONLY context. The coder is always the final implementation stage — investigate and plan before coding for non-trivial tasks. context_files are MANDATORY and ONLY .md files are accepted. Pass .ts/.js/.json and it WILL fail. Create .md specs via launch-super-planner first, or write one yourself. Workflow: researcher → planner → CODER → tester
After planner completes, read Status: Read |
| launch-super-plannerA | Launch an autonomous planning agent. Designs architecture and creates implementation plans as .md files. Always uses claude-opus-4.6 regardless of model parameter. Use this for any non-trivial task — if the work touches 3+ files or has ambiguous requirements, plan first. Workflow: researcher → PLANNER → coder → tester
Output goes to Status: Read |
| launch-super-testerA | Launch an autonomous testing agent. Primarily E2E testing with Playwright (browser flows, visual, interactions) but also handles API testing (curl + jq), running existing test suites, and any verification that proves the code works in the real world. Runs in COMPLETE ISOLATION. context_files are MANDATORY — any file type accepted (source, tests, handoff docs). Pass ALL files from the coder's agent workspace — especially HANDOFF.md which contains testing instructions, curl examples, and Playwright hints. Workflow: researcher → planner → coder → TESTER Chain with depends_on after coder. Status: Read |
| launch-super-researcherA | Launch an autonomous research agent. Investigates codebases, APIs, libraries, and technical topics. Produces .md research documents for downstream agents. Investigate before you solve — use this before planning or coding when the problem space is unclear. Workflow: RESEARCHER → planner → coder → tester
Output goes to Status: Read |
| launch-classic-agentA | Launch a general-purpose autonomous agent for non-specialized tasks: documentation, analysis, file organization, data processing, report generation, or any automation that doesn't fit coder/planner/tester/researcher. Investigate first — have the agent explore and understand before producing output. Keeps context across the session — good for iterative or exploratory work. Status: Read |
| message-agentA | Send a follow-up message to an existing agent session. Resumes the session — the agent continues from where it left off. Returns a NEW task_id — the original task stays terminal. Monitor the new ID for progress. When to call: Continue a completed/failed/rate-limited agent with follow-up instructions, or resume with default "continue". Find task_id: Read |
| cancel-agentA | Cancel running agents or clear the entire workspace. Cancel: Running agents are killed (SIGTERM → SIGKILL). Terminal agents are removed from memory. Find task_id: Read |
| answer-agentA | Submit an answer to a pending question from an agent. When an agent pauses because it asked a question, use this to respond and resume execution. When to call: Read Single-question flows (Copilot / Claude): Use the
Multi-question flows (Codex): Use the Examples: Find pending questions: Read |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| System Status | Accounts: 0, Tasks: 0 (0 running) |
| All Tasks | 0 tasks - replaces list_tasks tool |
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/yigitkonur/mcp-supersubagents'
If you have feedback or need assistance with the MCP directory API, please join our Discord server