AgentHubAgentHub

codex-octopus

MCP ServerMCP Registry官方收录

io.github.xiaolai/codex-octopus · v1.0.1

Spawn multiple specialized Codex agents as MCP servers, each independently configured.

概览

codex-octopus 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "codex-octopus": {
      "command": "npx",
      "args": [
        "-y",
        "codex-octopus"
      ]
    }
  }
}

环境变量

CODEX_API_KEY可选secret

OpenAI API key (leave unset to inherit from parent process)

CODEX_TOOL_NAME可选

Tool name prefix (default: codex)

CODEX_MODEL可选

Model: gpt-5-codex, o3, codex-1, or full ID

CODEX_SANDBOX_MODE可选

Sandbox: read-only, workspace-write, danger-full-access

CODEX_APPROVAL_POLICY可选

Approval: never, on-failure, on-request, untrusted

CODEX_APPEND_INSTRUCTIONS可选

Additional instructions appended to the default

CODEX_FACTORY_ONLY可选

Set to true to expose only the factory wizard tool

相关资源

统一 Manifest

{
  "id": "io.github.xiaolai/codex-octopus",
  "type": "mcp-server",
  "version": "1.0.1",
  "displayName": "codex-octopus",
  "description": "Spawn multiple specialized Codex agents as MCP servers, each independently configured.",
  "repository": {
    "url": "https://github.com/xiaolai/codex-octopus",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "codex-octopus",
        "version": "1.0.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "CODEX_API_KEY",
            "description": "OpenAI API key (leave unset to inherit from parent process)",
            "isSecret": true
          },
          {
            "name": "CODEX_TOOL_NAME",
            "description": "Tool name prefix (default: codex)"
          },
          {
            "name": "CODEX_MODEL",
            "description": "Model: gpt-5-codex, o3, codex-1, or full ID"
          },
          {
            "name": "CODEX_SANDBOX_MODE",
            "description": "Sandbox: read-only, workspace-write, danger-full-access"
          },
          {
            "name": "CODEX_APPROVAL_POLICY",
            "description": "Approval: never, on-failure, on-request, untrusted"
          },
          {
            "name": "CODEX_APPEND_INSTRUCTIONS",
            "description": "Additional instructions appended to the default"
          },
          {
            "name": "CODEX_FACTORY_ONLY",
            "description": "Set to true to expose only the factory wizard tool"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.xiaolai/codex-octopus",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.xiaolai%2Fcodex-octopus/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
codex-octopus — MCP Server 安装与配置 · AgentHub