-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.64 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"dxt_version": "0.1",
"name": "@beeper/mcp-remote",
"display_name": "Beeper Desktop",
"version": "0.0.1",
"description": "Beeper Desktop gives Claude access to all your messages and chats across 10+ chat networks. Requires Beeper Desktop to be installed and running on the same device.",
"author": {
"name": "Beeper",
"email": "[email protected]",
"url": "https://www.beeper.com"
},
"repository": {
"type": "git",
"url": "https://github.com/beeper/mcp-remote"
},
"homepage": "https://www.beeper.com/mcp",
"documentation": "https://developers.beeper.com/desktop-api/mcp",
"icon": "icon.png",
"server": {
"type": "node",
"entry_point": "proxy.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/proxy.js",
"${user_config.beeper_desktop_base_url}/v0/mcp",
"--client",
"claude-desktop",
"--debug"
],
"env": {
"MCP_REMOTE_CONFIG_DIR": "${__dirname}/.mcp-auth",
"HOME": "${HOME}"
}
}
},
"tools_generated": true,
"keywords": ["beeper", "messages", "chat", "messages", "send", "read", "unread", "history", "communication", "automation"],
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">=18.0.0"
}
},
"user_config": {
"beeper_desktop_base_url": {
"type": "string",
"title": "Beeper Desktop Base URL",
"description": "Base URL for Beeper Desktop API. You don't need to change this if you're using the default port (23373).",
"required": false,
"default": "http://localhost:23373"
}
}
}