burn-mcp-server 2.0.1 → 2.0.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.
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Burn — Personal Knowledge Base MCP Server
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/burn-mcp-server.svg)](https://www.npmjs.com/package/burn-mcp-server)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
3
6
  Your reading data as an AI-accessible knowledge base. 22 tools for Claude, Cursor, Windsurf, and any MCP-compatible agent.
4
7
 
5
8
  ## How it works
@@ -120,6 +123,11 @@ Open Burn App → Settings → MCP Server → **Copy Access Token**
120
123
 
121
124
  ## Links
122
125
 
123
- - **App**: [burn451.app](https://burn451.app)
126
+ - **App**: [burn451.cloud](https://burn451.cloud)
127
+ - **iOS App**: [App Store](https://apps.apple.com/us/app/burn451/id6759418544)
124
128
  - **npm**: [burn-mcp-server](https://www.npmjs.com/package/burn-mcp-server)
125
129
  - **Chrome Extension**: Search "Bookmark Autopsy" on Chrome Web Store
130
+
131
+ ## License
132
+
133
+ MIT
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "burn-mcp-server",
3
- "version": "2.0.1",
4
- "description": "MCP Server for Burn — access your Vault from Claude/Cursor",
3
+ "version": "2.0.3",
4
+ "mcpName": "io.github.fisher521/burn-mcp-server",
5
+ "description": "MCP Server for Burn — 22 tools to let your AI agent search, triage, and organize your reading. Works with Claude, Cursor, Windsurf.",
5
6
  "main": "dist/index.js",
6
7
  "bin": {
7
8
  "burn-mcp": "dist/index.js"
@@ -10,6 +11,38 @@
10
11
  "build": "tsc",
11
12
  "start": "node dist/index.js"
12
13
  },
14
+ "keywords": [
15
+ "mcp",
16
+ "mcp-server",
17
+ "model-context-protocol",
18
+ "bookmark",
19
+ "bookmark-manager",
20
+ "reading-list",
21
+ "read-later",
22
+ "knowledge-base",
23
+ "personal-knowledge",
24
+ "knowledge-management",
25
+ "claude",
26
+ "cursor",
27
+ "windsurf",
28
+ "ai-agent",
29
+ "ai-tools",
30
+ "pocket-alternative",
31
+ "raindrop-alternative",
32
+ "obsidian",
33
+ "notion",
34
+ "burn"
35
+ ],
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/Fisher521/burn-mcp-server.git"
39
+ },
40
+ "homepage": "https://burn451.cloud",
41
+ "bugs": {
42
+ "url": "https://github.com/Fisher521/burn-mcp-server/issues"
43
+ },
44
+ "license": "MIT",
45
+ "author": "Burn451 <hawking520@gmail.com>",
13
46
  "dependencies": {
14
47
  "@modelcontextprotocol/sdk": "^1.0.0",
15
48
  "@supabase/supabase-js": "^2.39.0",
package/server.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.fisher521/burn-mcp-server",
4
+ "description": "22 tools to let your AI agent search, triage, and organize your reading list.",
5
+ "repository": {
6
+ "url": "https://github.com/Fisher521/burn-mcp-server",
7
+ "source": "github"
8
+ },
9
+ "version": "2.0.2",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "burn-mcp-server",
14
+ "version": "2.0.2",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "description": "Long-lived MCP access token from Burn App Settings",
21
+ "isRequired": true,
22
+ "format": "string",
23
+ "isSecret": true,
24
+ "name": "BURN_MCP_TOKEN"
25
+ }
26
+ ]
27
+ }
28
+ ]
29
+ }
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 } })