by itzdaimy
Real-time 247afk block editor: let AI assistants read, build, and edit scripts via a local WebSocket bridge for live, in
Connects AI assistants to the 247afk block editor through a local WebSocket bridge, enabling real-time editing of visual scripts directly in the browser.
247afk Block Editor MCP Server is a community-built MCP server published by itzdaimy that provides AI assistants with tools and capabilities via the Model Context Protocol. Real-time 247afk block editor: let AI assistants read, build, and edit scripts via a local WebSocket bridge for live, in It is categorized under developer tools. This server exposes 8 tools that AI clients can invoke during conversations and coding sessions.
You can install 247afk Block Editor MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
247afk Block Editor MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
247afk Block Editor MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated 247afk Block Editor MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
247afk Block Editor MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
247afk Block Editor MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
247afk Block Editor MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend 247afk Block Editor MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
247afk Block Editor MCP Server is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated 247afk Block Editor MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
Strong directory entry: 247afk Block Editor MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend 247afk Block Editor MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
showing 1-10 of 57
Lets AI assistants (Claude Desktop, Cline, Cursor, and any MCP-compatible client) build and edit block editor scripts in real time.
127.0.0.1:3002npm install -g 247afk-mcp
codex mcp add 247afk-mcp -- npx -y 247afk-mcp
gemini mcp add 247afk-mcp npx "-y 247afk-mcp"
claude mcp add 247afk-mcp -- npx -y 247afk-mcp
{
"mcpServers": {
"247afk-mcp": {
"command": "npx",
"args": [
"-y",
"247afk-mcp"
]
}
}
}
paste this in your browser:
cursor://anysphere.cursor-deeplink/mcp/install?name=247afk%20Block%20Editor%20MCP%20Server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIjI0N2Fmay1tY3AiXX0=
Configuration
{
"mcpServers": {
"247afk-mcp": {
"command": "npx",
"args": [
"-y",
"247afk-mcp"
]
}
}
}
Restart antigravity/claude code after saving.
npx @modelcontextprotocol/inspector 247afk-mcp
Opens a browser UI to call tools manually.
update_node_data — merge field values into a node without replacing itmove_node — reposition a node on the canvasget_node — inspect a single node's type, position, and dataclear_graph — wipe all nodes and edges while keeping variablesvalidate_graph — run client-side validation and return errors/warningssave_graph — save the script to the server (equivalent to Ctrl+S)auto_layout — auto-arrange nodes left-to-right by execution flowadd_variable — add or replace a single variable without touching othersremove_variable — remove a single variable by namePrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.