burn-mcp-server 2.0.6 → 2.1.0
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/.cursor-plugin/plugin.json +19 -0
- package/.mcp.json +11 -0
- package/README.md +30 -1
- package/api/mcp.js +36075 -0
- package/dist/http.mjs +1131 -0
- package/dist/index.js +1021 -1009
- package/package.json +1 -1
- package/server.json +16 -2
- package/src/vercel-node-handler.ts +76 -0
- package/vercel.json +11 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Burn MCP Server",
|
|
3
|
+
"description": "AI-powered reading triage — 26 tools for managing your reading queue with a 24h burn countdown. Save, search, digest, and triage articles from Claude or Cursor.",
|
|
4
|
+
"version": "2.0.6",
|
|
5
|
+
"homepage": "https://burn451.cloud",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"reading",
|
|
10
|
+
"productivity",
|
|
11
|
+
"knowledge-management",
|
|
12
|
+
"bookmark",
|
|
13
|
+
"ai-tools"
|
|
14
|
+
],
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Burn451",
|
|
17
|
+
"url": "https://github.com/Fisher521"
|
|
18
|
+
}
|
|
19
|
+
}
|
package/.mcp.json
ADDED
package/README.md
CHANGED
|
@@ -21,7 +21,9 @@ The MCP server lets your AI agent search, triage, organize, and analyze everythi
|
|
|
21
21
|
|
|
22
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
|
-
### 2.
|
|
24
|
+
### 2. Pick a connection mode
|
|
25
|
+
|
|
26
|
+
#### 2a. Local — stdio (Claude Desktop / Claude Code CLI / Cursor / Windsurf)
|
|
25
27
|
|
|
26
28
|
```json
|
|
27
29
|
{
|
|
@@ -37,6 +39,33 @@ Download [Burn on iOS](https://apps.apple.com/app/burn451/id6759418544) or use [
|
|
|
37
39
|
}
|
|
38
40
|
```
|
|
39
41
|
|
|
42
|
+
#### 2b. Remote — HTTPS (claude.ai Connectors / Claude Code Routines / any cloud MCP client)
|
|
43
|
+
|
|
44
|
+
Endpoint:
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
https://burn-mcp-server.vercel.app/api/mcp
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Auth: `Authorization: Bearer <BURN_MCP_TOKEN>` header.
|
|
51
|
+
|
|
52
|
+
For **claude.ai Connectors** (Settings → Connectors → Add custom MCP):
|
|
53
|
+
- URL: `https://burn-mcp-server.vercel.app/api/mcp`
|
|
54
|
+
- Header: `Authorization: Bearer <your BURN_MCP_TOKEN>`
|
|
55
|
+
|
|
56
|
+
For **Claude Code Routines**: link globally in Settings → Connectors; Routines will auto-include it.
|
|
57
|
+
|
|
58
|
+
Direct curl test:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
curl -X POST https://burn-mcp-server.vercel.app/api/mcp \
|
|
62
|
+
-H "Authorization: Bearer $BURN_MCP_TOKEN" \
|
|
63
|
+
-H "Content-Type: application/json" \
|
|
64
|
+
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"curl","version":"1.0"}}}'
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Transport: stateless StreamableHTTP, JSON-response mode. Same 26 tools, same token, no install.
|
|
68
|
+
|
|
40
69
|
### 3. Start asking
|
|
41
70
|
|
|
42
71
|
- "What did I save about system design?"
|