@cg3/equip 0.2.10 → 0.2.11

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.
Files changed (2) hide show
  1. package/lib/mcp.js +2 -1
  2. package/package.json +1 -1
package/lib/mcp.js CHANGED
@@ -188,10 +188,11 @@ function readMcpEntry(configPath, rootKey, serverName, configFormat = "json") {
188
188
  */
189
189
  function buildHttpConfig(serverUrl, platform) {
190
190
  if (platform === "windsurf") return { serverUrl };
191
+ if (platform === "claude-code") return { type: "http", url: serverUrl };
191
192
  if (platform === "vscode") return { type: "http", url: serverUrl };
192
193
  if (platform === "cursor") return { type: "streamable-http", url: serverUrl };
193
194
  if (platform === "gemini-cli") return { httpUrl: serverUrl };
194
- // codex, claude-code, cline, roo-code all use { url }
195
+ // codex, cline, roo-code all use { url }
195
196
  return { url: serverUrl };
196
197
  }
197
198
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cg3/equip",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Universal MCP + behavioral rules installer for AI coding agents",
5
5
  "main": "index.js",
6
6
  "bin": {