@cocaxcode/logbook-mcp 0.4.10 → 0.4.12

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/README.md CHANGED
@@ -28,9 +28,9 @@
28
28
 
29
29
  ## Quick Overview
30
30
 
31
- logbook-mcp is an MCP server that turns your AI assistant into a persistent developer logbook. Capture decisions, track TODOs, set reminders, and search everything — without leaving your editor.
31
+ logbook-mcp is an MCP server that turns your AI assistant into a persistent developer logbook. Capture decisions, track TODOs, set reminders, scan code TODOs, and search everything with full-text search — without leaving your editor.
32
32
 
33
- It auto-detects your git project, stores everything in a local SQLite database, and works with any MCP-compatible client: Claude Code, Claude Desktop, Cursor, Windsurf, VS Code, Codex CLI, or Gemini CLI.
33
+ It auto-detects your git project, stores everything in a local SQLite database at `~/.logbook/logbook.db`, and works with any MCP-compatible client: Claude Code, Claude Desktop, Cursor, Windsurf, VS Code, Codex CLI, or Gemini CLI. **All data stays on your machine — nothing is synced, nothing is tracked, nothing leaves your disk.** Notes are scoped per-project automatically, but you can search globally across all your projects at any time.
34
34
 
35
35
  ---
36
36
 
@@ -236,8 +236,7 @@ Both one-time and recurring patterns are supported:
236
236
 
237
237
  Recurring reminders auto-acknowledge after being shown once per day. One-time reminders that were missed show as overdue.
238
238
 
239
- > [!TIP]
240
- > logbook-mcp exposes an MCP Resource (`logbook://reminders`) that clients can load on session start. In Claude Code and Claude Desktop, reminders appear automatically without asking. In other clients, just say *"any reminders?"*.
239
+ > **Tip:** logbook-mcp exposes an MCP Resource (`logbook://reminders`) that clients can load on session start. In Claude Code and Claude Desktop, reminders appear automatically without asking. In other clients, just say *"any reminders?"*.
241
240
 
242
241
  ### Full-text search (FTS5)
243
242
 
@@ -389,8 +388,7 @@ All data lives in a single SQLite database at `~/.logbook/logbook.db`.
389
388
  - **Foreign keys** with `ON DELETE SET NULL` — delete a project, notes remain
390
389
  - **Code TODO snapshots** — tracks which code TODOs existed, detects when they disappear
391
390
 
392
- > [!NOTE]
393
- > The database is created automatically on first use. No setup required.
391
+ > **Note:** The database is created automatically on first use. No setup required.
394
392
 
395
393
  ---
396
394
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/cli.ts
4
- var VERSION = true ? "0.4.10" : "0.0.0";
4
+ var VERSION = true ? "0.4.12" : "0.0.0";
5
5
  async function runCli(argv) {
6
6
  if (argv.includes("--version") || argv.includes("-v")) {
7
7
  console.log(`logbook-mcp v${VERSION}`);
package/dist/index.js CHANGED
@@ -6,13 +6,13 @@ async function main() {
6
6
  const hasMcpFlag = argv.includes("--mcp");
7
7
  if (hasMcpFlag) {
8
8
  const { StdioServerTransport } = await import("@modelcontextprotocol/sdk/server/stdio.js");
9
- const { createServer } = await import("./server-WQ6ILBUZ.js");
9
+ const { createServer } = await import("./server-YCNK5TAH.js");
10
10
  const server = createServer();
11
11
  const transport = new StdioServerTransport();
12
12
  await server.connect(transport);
13
13
  console.error("logbook-mcp server running on stdio");
14
14
  } else {
15
- const { runCli } = await import("./cli-FULNDCWB.js");
15
+ const { runCli } = await import("./cli-FYV7XES5.js");
16
16
  await runCli(argv);
17
17
  }
18
18
  }
@@ -1139,7 +1139,7 @@ function registerRemindersResource(server) {
1139
1139
  }
1140
1140
 
1141
1141
  // src/server.ts
1142
- var VERSION = true ? "0.4.10" : "0.0.0";
1142
+ var VERSION = true ? "0.4.12" : "0.0.0";
1143
1143
  function createServer() {
1144
1144
  const server = new McpServer({
1145
1145
  name: "logbook-mcp",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocaxcode/logbook-mcp",
3
- "version": "0.4.10",
3
+ "version": "0.4.12",
4
4
  "description": "Developer logbook MCP server. Notes, TODOs, reminders, code TODOs with full-text search. Zero config, auto-detects projects, SQLite-powered. Works with Claude, Cursor, Windsurf, Copilot, Gemini, Codex.",
5
5
  "type": "module",
6
6
  "bin": {