burn-mcp-server 2.0.1 → 2.0.2
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 +9 -1
- package/package.json +25 -2
- package/server.json +29 -0
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Burn — Personal Knowledge Base MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/burn-mcp-server)
|
|
4
|
+
[](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.
|
|
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.
|
|
4
|
-
"
|
|
3
|
+
"version": "2.0.2",
|
|
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,28 @@
|
|
|
10
11
|
"build": "tsc",
|
|
11
12
|
"start": "node dist/index.js"
|
|
12
13
|
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"mcp",
|
|
16
|
+
"model-context-protocol",
|
|
17
|
+
"bookmark",
|
|
18
|
+
"reading",
|
|
19
|
+
"knowledge-base",
|
|
20
|
+
"claude",
|
|
21
|
+
"cursor",
|
|
22
|
+
"windsurf",
|
|
23
|
+
"ai-agent",
|
|
24
|
+
"burn"
|
|
25
|
+
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/Fisher521/burn-mcp-server.git"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://burn451.cloud",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/Fisher521/burn-mcp-server/issues"
|
|
33
|
+
},
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"author": "Burn451 <hawking520@gmail.com>",
|
|
13
36
|
"dependencies": {
|
|
14
37
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
15
38
|
"@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": "Personal knowledge base MCP server — 22 tools to let your AI agent search, triage, and organize your reading list. Built for Burn451.",
|
|
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
|
+
}
|