- Explore MCP Servers
- liveblocks-mcp-server
Liveblocks Mcp Server
What is Liveblocks Mcp Server
liveblocks-mcp-server is a Multi-Client Protocol (MCP) server designed for Liveblocks, enabling AI to interact with various functionalities of the Liveblocks REST API.
Use cases
Use cases for liveblocks-mcp-server include collaborative document editing, real-time chat applications, online gaming environments, and any application that benefits from real-time updates and user interactions.
How to use
To use liveblocks-mcp-server, you can either set it up automatically by using your Liveblocks secret key with commands for different clients (e.g., Cursor, Claude Desktop, VS Code) or manually by cloning the repository, building the project, and configuring it with your secret key.
Key features
Key features of liveblocks-mcp-server include the ability to create, modify, and delete Liveblocks components such as rooms, threads, comments, and notifications, as well as read access to Storage and Yjs.
Where to use
liveblocks-mcp-server can be used in various fields such as collaborative applications, real-time communication tools, and any platform requiring dynamic content management and interaction.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Liveblocks Mcp Server
liveblocks-mcp-server is a Multi-Client Protocol (MCP) server designed for Liveblocks, enabling AI to interact with various functionalities of the Liveblocks REST API.
Use cases
Use cases for liveblocks-mcp-server include collaborative document editing, real-time chat applications, online gaming environments, and any application that benefits from real-time updates and user interactions.
How to use
To use liveblocks-mcp-server, you can either set it up automatically by using your Liveblocks secret key with commands for different clients (e.g., Cursor, Claude Desktop, VS Code) or manually by cloning the repository, building the project, and configuring it with your secret key.
Key features
Key features of liveblocks-mcp-server include the ability to create, modify, and delete Liveblocks components such as rooms, threads, comments, and notifications, as well as read access to Storage and Yjs.
Where to use
liveblocks-mcp-server can be used in various fields such as collaborative applications, real-time communication tools, and any platform requiring dynamic content management and interaction.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
liveblocks-mcp-server
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
- Clone this repo.
git clone https://github.com/liveblocks/liveblocks-mcp-server.git
- Build the project.
npm install npm run build
- Get your Liveblocks secret key from the dashboard.
sk_dev_Ns35f5G...
Cursor
-
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..."
}
}
}
}
- Check it’s enabled in the MCP menu.
Claude Desktop
-
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..."
}
}
}
}
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










