@eliottd/kleap 1.1.1 → 1.1.2
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/kleap-mcp-server.mjs +3 -3
- package/package.json +1 -1
package/kleap-mcp-server.mjs
CHANGED
|
@@ -181,7 +181,7 @@ async function authLogin() {
|
|
|
181
181
|
};
|
|
182
182
|
writeConfig(cfg);
|
|
183
183
|
console.error(
|
|
184
|
-
"[kleap] Signed in. Token saved to ~/.kleap/config.json — `npx kleap` now works with no API key.",
|
|
184
|
+
"[kleap] Signed in. Token saved to ~/.kleap/config.json — `npx @eliottd/kleap` now works with no API key.",
|
|
185
185
|
);
|
|
186
186
|
}
|
|
187
187
|
async function refreshIfNeeded(cfg) {
|
|
@@ -624,7 +624,7 @@ if (cmd[0] === "auth") {
|
|
|
624
624
|
if (sub === "status") {
|
|
625
625
|
const t = await resolveToken();
|
|
626
626
|
if (!t) {
|
|
627
|
-
console.error("[kleap] Not signed in. Run `npx kleap auth login`.");
|
|
627
|
+
console.error("[kleap] Not signed in. Run `npx @eliottd/kleap auth login`.");
|
|
628
628
|
process.exit(1);
|
|
629
629
|
}
|
|
630
630
|
console.error(
|
|
@@ -642,7 +642,7 @@ if (cmd[0] === "auth") {
|
|
|
642
642
|
AUTH_TOKEN = await resolveToken();
|
|
643
643
|
if (!AUTH_TOKEN) {
|
|
644
644
|
console.error(
|
|
645
|
-
"[kleap-mcp] Not signed in. Run `npx kleap auth login` (opens your browser, no API key needed),\n" +
|
|
645
|
+
"[kleap-mcp] Not signed in. Run `npx @eliottd/kleap auth login` (opens your browser, no API key needed),\n" +
|
|
646
646
|
" or set KLEAP_API_KEY=kleap_live_sk_... (https://kleap.co/settings/api-key).",
|
|
647
647
|
);
|
|
648
648
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eliottd/kleap",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Website infrastructure for AI agents. Drive Kleap from any MCP client (Claude, ChatGPT, Cursor) — create, edit and publish real websites, with the verified-live guarantee.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|