AgentHubAgentHub

orchex

MCP ServerMCP Registry官方收录

io.github.wundam/orchex · v1.0.0-rc.11

Autopilot AI orchestration — auto-plan, parallelize, self-heal, and route across 6 LLMs.

概览

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

安装

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

{
  "mcpServers": {
    "orchex": {
      "command": "npx",
      "args": [
        "-y",
        "@wundam/orchex"
      ]
    }
  }
}

环境变量

ANTHROPIC_API_KEY可选secret

Anthropic API key — auto-detected from shell env; override only

OPENAI_API_KEY可选secret

OpenAI API key — auto-detected from shell env; override only

GEMINI_API_KEY可选secret

Gemini API key — auto-detected from shell env; override only

DEEPSEEK_API_KEY可选secret

DeepSeek API key — auto-detected from shell env; override only

ORCHEX_API_URL可选

Override cloud API URL (optional, defaults to https://orchex.dev)

相关资源

统一 Manifest

{
  "id": "io.github.wundam/orchex",
  "type": "mcp-server",
  "version": "1.0.0-rc.11",
  "displayName": "orchex",
  "description": "Autopilot AI orchestration — auto-plan, parallelize, self-heal, and route across 6 LLMs.",
  "repository": {
    "url": "https://github.com/wundam/orchex",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@wundam/orchex",
        "version": "1.0.0-rc.11",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "ANTHROPIC_API_KEY",
            "description": "Anthropic API key — auto-detected from shell env; override only",
            "isSecret": true
          },
          {
            "name": "OPENAI_API_KEY",
            "description": "OpenAI API key — auto-detected from shell env; override only",
            "isSecret": true
          },
          {
            "name": "GEMINI_API_KEY",
            "description": "Gemini API key — auto-detected from shell env; override only",
            "isSecret": true
          },
          {
            "name": "DEEPSEEK_API_KEY",
            "description": "DeepSeek API key — auto-detected from shell env; override only",
            "isSecret": true
          },
          {
            "name": "ORCHEX_API_URL",
            "description": "Override cloud API URL (optional, defaults to https://orchex.dev)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.wundam/orchex",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.wundam%2Forchex/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
orchex — MCP Server 安装与配置 · AgentHub