AgentHubAgentHub

cloud-agent

MCP ServerMCP Registry官方收录

io.github.joepangallo/cloud-agent · v1.1.1

AI software engineer — writes code, opens PRs, reviews code, generates tests, and more.

概览

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

安装

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

{
  "mcpServers": {
    "cloud-agent": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-cloud-agent"
      ],
      "env": {
        "CLOUD_AGENT_API_KEY": "<CLOUD_AGENT_API_KEY>"
      }
    }
  }
}

环境变量

CLOUD_AGENT_API_KEY必填secret

API key for authenticating with Cloud Agent (ca_* prefix). Get one from your Cloud Agent web workspace.

CLOUD_AGENT_URL可选

Cloud Agent backend URL. Defaults to https://agent.leddconsulting.com

相关资源

统一 Manifest

{
  "id": "io.github.joepangallo/cloud-agent",
  "type": "mcp-server",
  "version": "1.1.1",
  "displayName": "cloud-agent",
  "description": "AI software engineer — writes code, opens PRs, reviews code, generates tests, and more.",
  "repository": {
    "url": "https://github.com/joepangallo/mcp-server-cloud-agent",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "mcp-server-cloud-agent",
        "version": "1.1.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "CLOUD_AGENT_API_KEY",
            "description": "API key for authenticating with Cloud Agent (ca_* prefix). Get one from your Cloud Agent web workspace.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "CLOUD_AGENT_URL",
            "description": "Cloud Agent backend URL. Defaults to https://agent.leddconsulting.com"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.joepangallo/cloud-agent",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.joepangallo%2Fcloud-agent/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
cloud-agent — MCP Server 安装与配置 · AgentHub