walkietalkiebot 0.3.0 → 0.3.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/mcp-server/dist/index.js +7 -2
- package/package.json +1 -1
package/mcp-server/dist/index.js
CHANGED
|
@@ -82,7 +82,7 @@ async function isWtbRunning() {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
function serverNotRunning() {
|
|
85
|
-
return { error: "
|
|
85
|
+
return { error: "This is a server tool \u2014 it requires the WTB web server to be running. You can start it with: npx walkietalkiebot\n\nNote: Data tools (conversations, plans, search, export) work without the server." };
|
|
86
86
|
}
|
|
87
87
|
async function serverCall(fn) {
|
|
88
88
|
try {
|
|
@@ -396,6 +396,11 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
396
396
|
async function main() {
|
|
397
397
|
const transport = new StdioServerTransport();
|
|
398
398
|
await server.connect(transport);
|
|
399
|
-
|
|
399
|
+
const running = await isWtbRunning();
|
|
400
|
+
if (running) {
|
|
401
|
+
console.error("Walkie Talkie Bot MCP ready \u2014 all 30 tools available (server detected at " + WTB_URL + ")");
|
|
402
|
+
} else {
|
|
403
|
+
console.error("Walkie Talkie Bot MCP ready \u2014 15 data tools available (conversations, plans, search, export). Start the server for voice/UI tools: npx walkietalkiebot");
|
|
404
|
+
}
|
|
400
405
|
}
|
|
401
406
|
main().catch(console.error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "walkietalkiebot",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Walkie Talkie Bot — a voice-first AI assistant for Claude Code. Use as a Claude Code plugin (30 MCP tools + 5 skills, offline SQLite) or full server (web UI, 6 retro themes, voice, Telegram)",
|
|
5
5
|
"homepage": "https://walkietalkie.bot",
|
|
6
6
|
"repository": {
|