mcp-server-cloud-agent 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/index.js +1 -1
- package/package.json +10 -1
- package/server.json +3 -3
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Connect from any MCP client (Claude Code, Cursor, Windsurf, or your own agents)
|
|
|
6
6
|
|
|
7
7
|
## How it works
|
|
8
8
|
|
|
9
|
-
This package is a **local stdio MCP proxy** that forwards requests to the Cloud Agent hosted backend at `
|
|
9
|
+
This package is a **local stdio MCP proxy** that forwards requests to the Cloud Agent hosted backend at `agent.leddconsulting.com`. Your MCP client communicates with this server over stdio; the server makes authenticated HTTPS calls to the backend on your behalf.
|
|
10
10
|
|
|
11
11
|
**Data flow:** MCP client → (stdio) → this server → (HTTPS) → Cloud Agent backend → GitHub
|
|
12
12
|
|
|
@@ -37,7 +37,7 @@ This package is a **local stdio MCP proxy** that forwards requests to the Cloud
|
|
|
37
37
|
|
|
38
38
|
### 1. Get an API key
|
|
39
39
|
|
|
40
|
-
Sign in to your Cloud Agent workspace at [
|
|
40
|
+
Sign in to your Cloud Agent workspace at [agent.leddconsulting.com](https://agent.leddconsulting.com) and generate an API key at `/auth/api-key`. Keys use the `ca_*` prefix.
|
|
41
41
|
|
|
42
42
|
### 2. Configure your MCP client
|
|
43
43
|
|
|
@@ -76,7 +76,7 @@ Sign in to your Cloud Agent workspace at [cloudagent.metaltorque.dev](https://cl
|
|
|
76
76
|
| Variable | Required | Description |
|
|
77
77
|
|----------|----------|-------------|
|
|
78
78
|
| `CLOUD_AGENT_API_KEY` | Yes | API key (`ca_*` prefix) from your Cloud Agent workspace |
|
|
79
|
-
| `CLOUD_AGENT_URL` | No | Backend URL (defaults to `https://
|
|
79
|
+
| `CLOUD_AGENT_URL` | No | Backend URL (defaults to `https://agent.leddconsulting.com`) |
|
|
80
80
|
|
|
81
81
|
## Usage Examples
|
|
82
82
|
|
package/index.js
CHANGED
|
@@ -10,7 +10,7 @@ const { version } = require("./package.json");
|
|
|
10
10
|
// ── Config ──────────────────────────────────────────────────────────
|
|
11
11
|
|
|
12
12
|
const API_KEY = process.env.CLOUD_AGENT_API_KEY || "";
|
|
13
|
-
const BASE_URL = (process.env.CLOUD_AGENT_URL || "https://
|
|
13
|
+
const BASE_URL = (process.env.CLOUD_AGENT_URL || "https://agent.leddconsulting.com").replace(/\/$/, "");
|
|
14
14
|
|
|
15
15
|
// ── Shared schemas ──────────────────────────────────────────────────
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-cloud-agent",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"mcpName": "io.github.joepangallo/cloud-agent",
|
|
5
5
|
"description": "MCP server for Cloud Agent — an AI software engineer that writes code, opens PRs, reviews code, generates tests, runs security scans, and answers codebase questions. Connect from any MCP client (Claude Code, Cursor, Windsurf) and delegate engineering tasks.",
|
|
6
6
|
"bin": {
|
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
44
44
|
"zod": "^3.23.0"
|
|
45
45
|
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"test": "vitest run",
|
|
48
|
+
"test:watch": "vitest"
|
|
49
|
+
},
|
|
46
50
|
"engines": {
|
|
47
51
|
"node": ">=18"
|
|
48
52
|
},
|
|
@@ -56,5 +60,10 @@
|
|
|
56
60
|
],
|
|
57
61
|
"devDependencies": {
|
|
58
62
|
"vitest": "^4.0.18"
|
|
63
|
+
},
|
|
64
|
+
"overrides": {
|
|
65
|
+
"@hono/node-server": "^1.19.10",
|
|
66
|
+
"express-rate-limit": "^8.2.2",
|
|
67
|
+
"hono": "^4.12.7"
|
|
59
68
|
}
|
|
60
69
|
}
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/joepangallo/mcp-server-cloud-agent",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.1.
|
|
9
|
+
"version": "1.1.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "mcp-server-cloud-agent",
|
|
14
|
-
"version": "1.1.
|
|
14
|
+
"version": "1.1.1",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"name": "CLOUD_AGENT_API_KEY"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
|
-
"description": "Cloud Agent backend URL. Defaults to https://
|
|
27
|
+
"description": "Cloud Agent backend URL. Defaults to https://agent.leddconsulting.com",
|
|
28
28
|
"isRequired": false,
|
|
29
29
|
"format": "string",
|
|
30
30
|
"isSecret": false,
|