burn-mcp-server 2.0.2 → 2.0.4

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
@@ -19,7 +19,7 @@ The MCP server lets your AI agent search, triage, organize, and analyze everythi
19
19
 
20
20
  ### 1. Get your token
21
21
 
22
- Open Burn App → Settings → MCP Server → **Copy Access Token**
22
+ Download [Burn on iOS](https://apps.apple.com/app/burn451/id6759418544) or use [Burn on the web](https://burn451.cloud) → Settings → MCP Server → **Copy Access Token**
23
23
 
24
24
  ### 2. Add to Claude Desktop
25
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "burn-mcp-server",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "mcpName": "io.github.fisher521/burn-mcp-server",
5
5
  "description": "MCP Server for Burn — 22 tools to let your AI agent search, triage, and organize your reading. Works with Claude, Cursor, Windsurf.",
6
6
  "main": "dist/index.js",
@@ -13,14 +13,24 @@
13
13
  },
14
14
  "keywords": [
15
15
  "mcp",
16
+ "mcp-server",
16
17
  "model-context-protocol",
17
18
  "bookmark",
18
- "reading",
19
+ "bookmark-manager",
20
+ "reading-list",
21
+ "read-later",
19
22
  "knowledge-base",
23
+ "personal-knowledge",
24
+ "knowledge-management",
20
25
  "claude",
21
26
  "cursor",
22
27
  "windsurf",
23
28
  "ai-agent",
29
+ "ai-tools",
30
+ "pocket-alternative",
31
+ "raindrop-alternative",
32
+ "obsidian",
33
+ "notion",
24
34
  "burn"
25
35
  ],
26
36
  "repository": {
package/server.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.fisher521/burn-mcp-server",
4
- "description": "Personal knowledge base MCP server — 22 tools to let your AI agent search, triage, and organize your reading list. Built for Burn451.",
4
+ "description": "22 tools to let your AI agent search, triage, and organize your reading list.",
5
5
  "repository": {
6
6
  "url": "https://github.com/Fisher521/burn-mcp-server",
7
7
  "source": "github"
package/smithery.yaml ADDED
@@ -0,0 +1,17 @@
1
+ # Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
2
+
3
+ startCommand:
4
+ type: stdio
5
+
6
+ configSchema:
7
+ type: object
8
+ required:
9
+ - burnMcpToken
10
+ properties:
11
+ burnMcpToken:
12
+ type: string
13
+ description: Long-lived MCP access token from Burn App Settings page.
14
+
15
+ commandFunction:
16
+ |-
17
+ (config) => ({ command: 'npx', args: ['-y', 'burn-mcp-server'], env: { BURN_MCP_TOKEN: config.burnMcpToken } })