Skip to content

Commit d4b914d

Browse files
committed
Add Liveblocks MCP server definition
Official Liveblocks MCP server for real-time collaboration. Manage rooms, threads, comments, and notifications. Uses @liveblocks/liveblocks-mcp-server. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit d4b914d

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.liveblocks-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.liveblocks-mcp",
4+
"name": "Liveblocks",
5+
"alias": "liveblocks",
6+
"description": "Manage Liveblocks real-time collaboration rooms, threads, comments, and notifications. Configure presence, storage, and permissions.",
7+
"icon": "https://avatars.githubusercontent.com/u/76756571?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["communication", "developer-tools"],
10+
"tags": ["liveblocks", "real-time", "collaboration", "comments", "threads", "presence"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@liveblocks/liveblocks-mcp-server"],
16+
"env": {
17+
"LIVEBLOCKS_SECRET_KEY": "${input:LIVEBLOCKS_SECRET_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "LIVEBLOCKS_SECRET_KEY",
23+
"label": "Liveblocks Secret Key",
24+
"description": "Secret key for the Liveblocks API.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://liveblocks.io/dashboard/apikeys",
31+
"instructions": "1. Go to liveblocks.io/dashboard > API keys\n2. Copy the Secret key (starts with sk_)",
32+
"button_label": "Get Secret Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get your secret key from https://liveblocks.io/dashboard/apikeys"
42+
},
43+
44+
"contributor": {
45+
"name": "Liveblocks",
46+
"github": "liveblocks",
47+
"url": "https://liveblocks.io"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/liveblocks/liveblocks-mcp-server",
52+
"homepage": "https://liveblocks.io",
53+
"documentation": "https://liveblocks.io/docs/tools/mcp-server"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)