From d4b914daf0533903ef7e6dbbf3d9c7023dc80b60 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 14:25:31 +0000 Subject: [PATCH 1/2] 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 --- servers/com.liveblocks-mcp.json | 64 +++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.liveblocks-mcp.json diff --git a/servers/com.liveblocks-mcp.json b/servers/com.liveblocks-mcp.json new file mode 100644 index 0000000..c134dda --- /dev/null +++ b/servers/com.liveblocks-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.liveblocks-mcp", + "name": "Liveblocks", + "alias": "liveblocks", + "description": "Manage Liveblocks real-time collaboration rooms, threads, comments, and notifications. Configure presence, storage, and permissions.", + "icon": "https://avatars.githubusercontent.com/u/76756571?v=4", + "schema_version": "2.1", + "categories": ["communication", "developer-tools"], + "tags": ["liveblocks", "real-time", "collaboration", "comments", "threads", "presence"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@liveblocks/liveblocks-mcp-server"], + "env": { + "LIVEBLOCKS_SECRET_KEY": "${input:LIVEBLOCKS_SECRET_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "LIVEBLOCKS_SECRET_KEY", + "label": "Liveblocks Secret Key", + "description": "Secret key for the Liveblocks API.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://liveblocks.io/dashboard/apikeys", + "instructions": "1. Go to liveblocks.io/dashboard > API keys\n2. Copy the Secret key (starts with sk_)", + "button_label": "Get Secret Key" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Get your secret key from https://liveblocks.io/dashboard/apikeys" + }, + + "contributor": { + "name": "Liveblocks", + "github": "liveblocks", + "url": "https://liveblocks.io" + }, + + "links": { + "repository": "https://github.com/liveblocks/liveblocks-mcp-server", + "homepage": "https://liveblocks.io", + "documentation": "https://liveblocks.io/docs/tools/mcp-server" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From edec4fee0d6e13ce0df9e9c907dfc47790a0526f Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:09:41 +0800 Subject: [PATCH 2/2] fix: update server definition (input type 'password' -> 'text' for LIVEBLOCKS_SECRET_KEY) --- servers/com.liveblocks-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.liveblocks-mcp.json b/servers/com.liveblocks-mcp.json index c134dda..b5a93d7 100644 --- a/servers/com.liveblocks-mcp.json +++ b/servers/com.liveblocks-mcp.json @@ -6,13 +6,25 @@ "description": "Manage Liveblocks real-time collaboration rooms, threads, comments, and notifications. Configure presence, storage, and permissions.", "icon": "https://avatars.githubusercontent.com/u/76756571?v=4", "schema_version": "2.1", - "categories": ["communication", "developer-tools"], - "tags": ["liveblocks", "real-time", "collaboration", "comments", "threads", "presence"], - + "categories": [ + "communication", + "developer-tools" + ], + "tags": [ + "liveblocks", + "real-time", + "collaboration", + "comments", + "threads", + "presence" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@liveblocks/liveblocks-mcp-server"], + "args": [ + "-y", + "@liveblocks/liveblocks-mcp-server" + ], "env": { "LIVEBLOCKS_SECRET_KEY": "${input:LIVEBLOCKS_SECRET_KEY}" }, @@ -22,7 +34,7 @@ "id": "LIVEBLOCKS_SECRET_KEY", "label": "Liveblocks Secret Key", "description": "Secret key for the Liveblocks API.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +47,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Get your secret key from https://liveblocks.io/dashboard/apikeys" }, - "contributor": { "name": "Liveblocks", "github": "liveblocks", "url": "https://liveblocks.io" }, - "links": { "repository": "https://github.com/liveblocks/liveblocks-mcp-server", "homepage": "https://liveblocks.io", "documentation": "https://liveblocks.io/docs/tools/mcp-server" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false,