by liveblocks
Enables AI agents to invoke Liveblocks REST API endpoints for creating, modifying, and deleting rooms, threads, comments, notifications, and provides read‑only access to Storage and Yjs data structures.
The server acts as a bridge that lets AI models perform actions on the Liveblocks platform via its REST API. It supports full CRUD operations on core Liveblocks entities such as rooms, threads, comments, and notifications, and also grants read access to the underlying Storage and Yjs CRDT layer.
npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client <client> --key <YOUR_SECRET_KEY>
Replace <client> with cursor, claude, vscode, etc.npm install and npm run build.LIVEBLOCKS_SECRET_KEY=sk_... node build/index.js
Q: Which environment variable holds the API key?
A: LIVEBLOCKS_SECRET_KEY must contain your Liveblocks secret key.
Q: Do I need to build the project before running it?
A: Yes, run npm install and npm run build if you use the manual setup.
Q: Can I use the server with other AI clients besides the listed ones? A: Yes, as long as the client supports MCP servers—you only need to add the server configuration.
Q: Is there any cost associated with using the server? A: The server itself is open‑source; you only pay for the Liveblocks usage according to your plan.
Q: How do I update the server to a newer version?
A: Re‑run the npx @smithery/cli install … command or pull the latest repository and rebuild.
liveblocks-mcp-serverThis 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 commands, replacing [key] with your secret key.
npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client cursor --key [key]
npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client claude --key [key]
npx -y @smithery/cli install @liveblocks/liveblocks-mcp-server --client vscode --key [key]
Find installation information for other clients on Smithery.
git clone https://github.com/liveblocks/liveblocks-mcp-server.git
npm install
npm run build
sk_dev_Ns35f5G...
Go to File → Cursor Settings → MCP → Add new server.
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..."
}
}
}
}
Go to File → Settings → Developer → Edit Config.
Open the JSON file, claude_desktop_config.json.
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..."
}
}
}
}
Please log in to share your review and rating for this MCP.
{
"mcpServers": {
"liveblocks-mcp-server": {
"command": "npx",
"args": [
"-y",
"liveblocks-mcp-server"
],
"env": {
"LIVEBLOCKS_SECRET_KEY": "<YOUR_LIVEBLOCKS_SECRET_KEY>"
}
}
}
}claude mcp add liveblocks-mcp-server npx -y liveblocks-mcp-serverExplore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.