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. To install automatically, copy your Liveblocks secret key from a project in your dashboard and run one of the following
Add this skill
npx mdskills install liveblocks/liveblocks-mcp-serverWell-documented MCP server with clear setup instructions but overly broad permissions
1<p align="center">2 <a href="https://liveblocks.io#gh-light-mode-only">3 <img src="https://raw.githubusercontent.com/liveblocks/liveblocks/main/.github/assets/header-light.svg" alt="Liveblocks" />4 </a>5 <a href="https://liveblocks.io#gh-dark-mode-only">6 <img src="https://raw.githubusercontent.com/liveblocks/liveblocks/main/.github/assets/header-dark.svg" alt="Liveblocks" />7 </a>8</p>910# `liveblocks-mcp-server`1112[](https://smithery.ai/server/@liveblocks/liveblocks-mcp-server)1314This MCP server allows AI to use a number of functions from our [REST API](https://liveblocks.io/docs/api-reference/rest-api-endpoints). 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](https://liveblocks.io/docs/tools/mcp-server).1516## Automatic setup1718To install automatically, copy your Liveblocks secret key from a project in [your dashboard](https://liveblocks.io/dashboard) and run one of the following commands, replacing `[key]` with your secret key.1920### Cursor2122```bash23npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client cursor --key [key]24```2526### Claude Desktop2728```bash29npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client claude --key [key]30```3132### VS Code3334```bash35npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client vscode --key [key]36```3738### Other clients3940Find installation information for other clients on [Smithery](https://smithery.ai/server/@liveblocks/liveblocks-mcp-server).4142## Manual setup4344<details><summary>Read more</summary>4546<p></p>47481. Clone this repo.4950```bash51git clone https://github.com/liveblocks/liveblocks-mcp-server.git52```53542. Build the project.5556```bash57npm install58npm run build59```60613. Get your Liveblocks secret key from the [dashboard](https://liveblocks.io/dashboard).6263```64sk_dev_Ns35f5G...65```6667### Cursor68694. Go to File → Cursor Settings → MCP → Add new server.70715. Add the following, with the full path to the repo and your secret key:7273```json74{75 "mcpServers": {76 "liveblocks-mcp-server": {77 "command": "node",78 "args": ["/full/path/to/the/repo/liveblocks-mcp-server/build/index.js"],79 "env": {80 "LIVEBLOCKS_SECRET_KEY": "sk_dev_Ns35f5G..."81 }82 }83 }84}85```86876. Check it's enabled in the MCP menu.8889### Claude Desktop90914. Go to File → Settings → Developer → Edit Config.92935. Open the JSON file, `claude_desktop_config.json`.94956. Add the following, with the full path to the repo and your secret key:9697```json98{99 "mcpServers": {100 "liveblocks-mcp-server": {101 "command": "node",102 "args": ["/full/path/to/the/repo/liveblocks-mcp-server/build/index.js"],103 "env": {104 "LIVEBLOCKS_SECRET_KEY": "sk_dev_Ns35f5G..."105 }106 }107 }108}109```110111</details>112
Full transparency — inspect the skill content before installing.