Skip to content

Commit edec4fe

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for LIVEBLOCKS_SECRET_KEY)
1 parent d4b914d commit edec4fe

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/com.liveblocks-mcp.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Manage Liveblocks real-time collaboration rooms, threads, comments, and notifications. Configure presence, storage, and permissions.",
77
"icon": "https://avatars.githubusercontent.com/u/76756571?v=4",
88
"schema_version": "2.1",
9-
"categories": ["communication", "developer-tools"],
10-
"tags": ["liveblocks", "real-time", "collaboration", "comments", "threads", "presence"],
11-
9+
"categories": [
10+
"communication",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"liveblocks",
15+
"real-time",
16+
"collaboration",
17+
"comments",
18+
"threads",
19+
"presence"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "@liveblocks/liveblocks-mcp-server"],
24+
"args": [
25+
"-y",
26+
"@liveblocks/liveblocks-mcp-server"
27+
],
1628
"env": {
1729
"LIVEBLOCKS_SECRET_KEY": "${input:LIVEBLOCKS_SECRET_KEY}"
1830
},
@@ -22,7 +34,7 @@
2234
"id": "LIVEBLOCKS_SECRET_KEY",
2335
"label": "Liveblocks Secret Key",
2436
"description": "Secret key for the Liveblocks API.",
25-
"type": "password",
37+
"type": "text",
2638
"required": true,
2739
"secret": true,
2840
"placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +47,23 @@
3547
]
3648
}
3749
},
38-
3950
"auth": {
4051
"type": "api_key",
4152
"instructions": "Get your secret key from https://liveblocks.io/dashboard/apikeys"
4253
},
43-
4454
"contributor": {
4555
"name": "Liveblocks",
4656
"github": "liveblocks",
4757
"url": "https://liveblocks.io"
4858
},
49-
5059
"links": {
5160
"repository": "https://github.com/liveblocks/liveblocks-mcp-server",
5261
"homepage": "https://liveblocks.io",
5362
"documentation": "https://liveblocks.io/docs/tools/mcp-server"
5463
},
55-
56-
"platforms": ["all"],
57-
64+
"platforms": [
65+
"all"
66+
],
5867
"capabilities": {
5968
"tools": true,
6069
"resources": false,

0 commit comments

Comments
 (0)