@vibetasks/mcp-server 0.6.2 → 0.6.3

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/dist/index.js +12 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1557,6 +1557,17 @@ ${ackNote}`;
1557
1557
  applies_to_children: args.applies_to_children ?? true
1558
1558
  });
1559
1559
  const sessionId = process.env.VIBETASKS_SESSION_ID;
1560
+ if (sessionId) {
1561
+ try {
1562
+ await taskOps2.logSessionAction(sessionId, {
1563
+ action_type: "research_created",
1564
+ description: `Saved research: "${args.title}"`,
1565
+ doc_id: doc.id
1566
+ });
1567
+ } catch (logError) {
1568
+ console.error("Failed to log research action:", logError);
1569
+ }
1570
+ }
1560
1571
  return {
1561
1572
  content: [
1562
1573
  {
@@ -2653,7 +2664,7 @@ async function main() {
2653
2664
  try {
2654
2665
  const authManager = new AuthManager();
2655
2666
  const supabaseUrl = process.env.TASKFLOW_SUPABASE_URL || await authManager.getConfig("supabase_url") || "https://ihmayqzxqyednchbezya.supabase.co";
2656
- const supabaseKey = process.env.TASKFLOW_SUPABASE_KEY || await authManager.getConfig("supabase_key") || "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImNia2t6dGJjb2l0cmZjbGVnaGZkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3Njc3NTc0MjgsImV4cCI6MjA4MzMzMzQyOH0.G7ILx-nntP0NbxO1gKt5yASb7nt7OmpJ8qtykeGYbQA";
2667
+ const supabaseKey = process.env.TASKFLOW_SUPABASE_KEY || await authManager.getConfig("supabase_key") || "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImlobWF5cXp4cXllZG5jaGJlenlhIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NjgxNzcyOTgsImV4cCI6MjA4Mzc1MzI5OH0._xhGhkqoy7AMm7M5dxSHXM_yeP8zVAJG-BaGMICtHFo";
2657
2668
  const accessToken = await authManager.getAccessToken();
2658
2669
  if (!accessToken) {
2659
2670
  console.error("ERROR: Not authenticated.", { severity: "error" });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibetasks/mcp-server",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "VibeTasks MCP Server for Claude Code, Cursor, and AI coding tools. Status-based task management: todo → vibing → done.",
5
5
  "author": "Vyas",
6
6
  "license": "MIT",
@@ -45,8 +45,8 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@modelcontextprotocol/sdk": "^0.5.0",
48
- "@vibetasks/core": "^0.5.8",
49
- "@vibetasks/shared": "^1.4.5",
48
+ "@vibetasks/core": "workspace:*",
49
+ "@vibetasks/shared": "workspace:*",
50
50
  "zod": "^3.22.0",
51
51
  "zod-to-json-schema": "^3.25.1"
52
52
  },