liveblocks-mcp-server
liveblocks-mcp-serverは、Liveblocks用のMCPサーバーであり、AIがREST APIを介してさまざまな機能を使用できるようにします。このサーバーは、ルーム、スレッド、コメント、通知などの作成、変更、削除を行うことができ、ストレージやYjsへの読み取りアクセスも提供します。リアルタイムコラボレーションを可能にし、開発者がインタラクティブなアプリケーションを構築する際に役立ちます。
GitHubスター
7
ユーザー評価
未評価
フォーク
4
イシュー
2
閲覧数
0
お気に入り
0
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
フォロワー
18
リポジトリ
0
Gist
27
貢献数