@curenorway/kode-cli 1.7.0 → 1.8.0
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.
|
@@ -1266,9 +1266,9 @@ config.json
|
|
|
1266
1266
|
}
|
|
1267
1267
|
mcpConfig.mcpServers = mcpConfig.mcpServers || {};
|
|
1268
1268
|
mcpConfig.mcpServers["cure-kode"] = {
|
|
1269
|
+
type: "stdio",
|
|
1269
1270
|
command: "npx",
|
|
1270
|
-
args: ["-y", "@curenorway/kode-mcp"]
|
|
1271
|
-
env: {}
|
|
1271
|
+
args: ["-y", "@curenorway/kode-mcp"]
|
|
1272
1272
|
};
|
|
1273
1273
|
let webflowToken = site.webflow_token;
|
|
1274
1274
|
let webflowMcpMethod = null;
|
|
@@ -1317,6 +1317,7 @@ config.json
|
|
|
1317
1317
|
}
|
|
1318
1318
|
if (webflowMcpMethod === "token" && webflowToken) {
|
|
1319
1319
|
mcpConfig.mcpServers["webflow"] = {
|
|
1320
|
+
type: "stdio",
|
|
1320
1321
|
command: "npx",
|
|
1321
1322
|
args: ["-y", "webflow-mcp-server@latest"],
|
|
1322
1323
|
env: {
|
|
@@ -1325,10 +1326,12 @@ config.json
|
|
|
1325
1326
|
};
|
|
1326
1327
|
} else if (webflowMcpMethod === "oauth") {
|
|
1327
1328
|
mcpConfig.mcpServers["webflow"] = {
|
|
1329
|
+
type: "http",
|
|
1328
1330
|
url: "https://mcp.webflow.com/sse"
|
|
1329
1331
|
};
|
|
1330
1332
|
}
|
|
1331
1333
|
mcpConfig.mcpServers["playwright"] = {
|
|
1334
|
+
type: "stdio",
|
|
1332
1335
|
command: "npx",
|
|
1333
1336
|
args: ["-y", "@playwright/mcp@latest"]
|
|
1334
1337
|
};
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED