burn-mcp-server 2.0.2 → 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/package.json +12 -2
- package/server.json +1 -1
- package/smithery.yaml +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "burn-mcp-server",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
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
|
-
"
|
|
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": "
|
|
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 } })
|