liveblocks-mcp-server
The liveblocks-mcp-server enables AI to utilize various functions through the Liveblocks REST API. It allows for the creation, modification, and deletion of elements such as rooms, threads, comments, and notifications, and provides read access to Storage and Yjs. Its automatic setup feature facilitates easy installation.
GitHub Stars
11
User Rating
Not Rated
Favorites
0
Views
7
Forks
7
Issues
4
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..."
}
}
}
}
220
Followers
18
Repositories
0
Gists
0
Total Contributions
Taskade's MCP (Model Context Protocol) initiatives provide tools and APIs related to the integration of AI workflows. It features the ability to generate MCP tools from OpenAPI specifications, facilitating easy integration with AI clients. Notably, it offers a server to connect Taskade's API to any MCP-compatible client.
The searchcraft-mcp-server is an MCP server powered by Searchcraft, offering a suite of management tools for handling search indexes, documents, access keys, and analytics. It allows users to issue commands in plain English, streamlining administrative tasks and enhancing productivity.
The remote-mcp-server-registry is a TypeScript library designed to streamline the management of remote servers. Users can easily register, manage, and monitor servers, facilitating automation of workflows. It is particularly useful for centralized management of multiple servers.