@artyfacts/claude 1.3.10 → 1.3.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.
package/dist/cli.js CHANGED
@@ -1286,7 +1286,7 @@ async function runAgent(options) {
1286
1286
  onConfigured: (connectionId, platform) => {
1287
1287
  console.log(`
1288
1288
  \u{1F527} [MCP] Configured ${platform} connection: ${connectionId}`);
1289
- console.log(" \u26A0\uFE0F Restart Claude Desktop to use the new MCP server");
1289
+ console.log(" \u{1F4A1} Try using the tools now - OAuth will prompt when needed");
1290
1290
  },
1291
1291
  onError: (error, connectionId) => {
1292
1292
  console.error(`
package/dist/cli.mjs CHANGED
@@ -287,7 +287,7 @@ async function runAgent(options) {
287
287
  onConfigured: (connectionId, platform) => {
288
288
  console.log(`
289
289
  \u{1F527} [MCP] Configured ${platform} connection: ${connectionId}`);
290
- console.log(" \u26A0\uFE0F Restart Claude Desktop to use the new MCP server");
290
+ console.log(" \u{1F4A1} Try using the tools now - OAuth will prompt when needed");
291
291
  },
292
292
  onError: (error, connectionId) => {
293
293
  console.error(`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artyfacts/claude",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "description": "Claude adapter for Artyfacts - Execute tasks using Claude Code CLI",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/src/cli.ts CHANGED
@@ -438,7 +438,7 @@ async function runAgent(options: {
438
438
  baseUrl: options.baseUrl,
439
439
  onConfigured: (connectionId, platform) => {
440
440
  console.log(`\nšŸ”§ [MCP] Configured ${platform} connection: ${connectionId}`);
441
- console.log(' āš ļø Restart Claude Desktop to use the new MCP server');
441
+ console.log(' šŸ’” Try using the tools now - OAuth will prompt when needed');
442
442
  },
443
443
  onError: (error, connectionId) => {
444
444
  console.error(`\nāŒ [MCP] Failed to configure connection ${connectionId}:`, error.message);