Back to Catalog

liveblocks-mcp-server

liveblocks/liveblocks-mcp-server
🔗 Latest commit:6552113
🕒 Updated:Sep 9, 2025, 01:05 PM
TypeScript
AI Tools

MCP server for Liveblocks.

MCP Trust Score
Based on our comprehensive evaluation criteria
🤖 Evaluated by gemini-2.5-proFix
Trust Score50/100
GitHub Metrics
Repository statistics and activity
⭐ GitHub Stars:11
👥 Contributors:2
📋 Total Issues:0
📦 Has Releases:No
🔧 Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
🤖 Evaluated by gemini-2.5-proFix
{
  "liveblocks-mcp-server": {
    "command": "node",
    "args": [
      "/full/path/to/the/repo/liveblocks-mcp-server/build/index.js"
    ],
    "env": {
      "LIVEBLOCKS_SECRET_KEY": "sk_dev_Ns35f5G..."
    }
  }
}
MCP Protocol Support
Implemented MCP protocol features
🤖 Evaluated by gemini-2.5-proFix
Tools:
Prompts:
Resources:
Sampling:
Roots:
Logging:
STDIO Transport:
HTTP Transport:
OAuth2 Auth:
Dependencies
3 dependencies
Libraries and frameworks used by this MCP server
🤖 Evaluated by gemini-2.5-proFix
Add Quality Badge
Show your MCP trust score in your README
Trust Score Badge
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/liveblocks/liveblocks-mcp-server)](https://archestra.ai/mcp-catalog/liveblocks__liveblocks-mcp-server)
README.md

Liveblocks Liveblocks

liveblocks-mcp-server

smithery badge

This MCP server allows AI to use a number of functions from our REST API. For example, it can create, modify, and delete different aspects of Liveblocks such as rooms, threads, comments, notifications, and more. It also has read access to Storage and Yjs. Learn more in our docs.

Automatic setup

To install automatically, copy your Liveblocks secret key from a project in your dashboard and run one of the following commands, replacing [key] with your secret key.

Cursor

npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client cursor --key [key]

Claude Desktop

npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client claude --key [key]

VS Code

npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client vscode --key [key]

Other clients

Find installation information for other clients on Smithery.

Manual setup

Read more

  1. Clone this repo.
git clone https://github.com/liveblocks/liveblocks-mcp-server.git
  1. Build the project.
npm install
npm run build
  1. Get your Liveblocks secret key from the dashboard.
sk_dev_Ns35f5G...

Cursor

  1. Go to File → Cursor Settings → MCP → Add new server.

  2. Add the following, with the full path to the repo and your secret key:

{
  "mcpServers": {
    "liveblocks-mcp-server": {
      "command": "node",
      "args": ["/full/path/to/the/repo/liveblocks-mcp-server/build/index.js"],
      "env": {
        "LIVEBLOCKS_SECRET_KEY": "sk_dev_Ns35f5G..."
      }
    }
  }
}
  1. Check it's enabled in the MCP menu.

Claude Desktop

  1. Go to File → Settings → Developer → Edit Config.

  2. Open the JSON file, claude_desktop_config.json.

  3. Add the following, with the full path to the repo and your secret key:

{
  "mcpServers": {
    "liveblocks-mcp-server": {
      "command": "node",
      "args": ["/full/path/to/the/repo/liveblocks-mcp-server/build/index.js"],
      "env": {
        "LIVEBLOCKS_SECRET_KEY": "sk_dev_Ns35f5G..."
      }
    }
  }
}
liveblocks-mcp-server MCP Server | Documentation & Integration | Archestra