by pento
Provides AI‑powered real‑time collaborative editing within the WordPress block editor, allowing Claude Code to act as a co‑author alongside human editors.
Claudaborative Editing brings Claude Code into the Gutenberg editor as an interactive collaborator. It lets the AI proofread, review, edit, translate, and compose content while human editors work on the same post, merging changes instantly through Yjs CRDT synchronization.
npx claudaborative-editing start. The command checks Claude Code, runs a one‑time setup wizard (browser‑based WordPress auth), and launches the local MCP server.Q: What are the prerequisites?
A: Claude Code installed, WordPress 7.0+ (or 6.9 with Gutenberg 22.8+), collaborative editing enabled, and a WordPress user with edit_posts capability.
Q: How does the real‑time collaboration work? A: Both the plugin and the MCP server connect to the same Yjs CRDT layer used by Gutenberg, so Claude’s edits are merged just like any other user’s changes.
Q: Can I configure WordPress credentials without the browser wizard?
A: Yes. Set WP_SITE_URL, WP_USERNAME, and WP_APP_PASSWORD as environment variables or use the --manual flag during setup.
Q: How do I stop the MCP server?
A: Press Ctrl+C in the terminal where npx claudaborative-editing start is running.
Q: Is there a way to uninstall the configuration?
A: Run npx claudaborative-editing setup --remove to delete stored credentials from Claude Code.
AI editing assistance directly in the WordPress block editor. Claude joins as a real-time collaborator to proofread, review, edit, translate, compose, and prepare your posts for publishing.
npx claudaborative-editing start
This checks that Claude Code is installed, runs a setup wizard on first use (opens your browser to authorize with WordPress), and starts a Claude Code session connected to your site.
Open any post in the block editor and use the AI Actions menu in the toolbar.
A sparkle icon in the editor toolbar opens a dropdown with actions you can trigger on the current post:
When you publish, an AI-powered panel suggests improvements to your post's excerpt, categories, tags, and slug. Apply suggestions individually or all at once.
Sparkle buttons appear on editorial notes in the collaboration sidebar. Address a single note or all open notes at once: Claude reads the note, understands the feedback, and makes the requested changes.
A side panel opens for interactive commands like Compose. Chat back and forth with Claude to refine an outline, then approve it to generate the post structure.
Claude appears as a named collaborator in the editor, using the same collaborative editing infrastructure as human editors. Edits from Claude and humans merge automatically: you can both work on the same post at the same time.
A sparkle icon in the editor footer shows whether Claude is connected. Click it to see which post Claude is editing and whether a command is in progress.
edit_posts capabilitynpx claudaborative-editing setup # Interactive setup (browser-based auth)
npx claudaborative-editing setup --manual # Skip browser auth, enter credentials manually
npx claudaborative-editing setup --remove # Remove configuration from Claude Code
If you prefer to configure credentials manually:
| Variable | Description |
|---|---|
WP_SITE_URL |
WordPress site URL |
WP_USERNAME |
WordPress username |
WP_APP_PASSWORD |
WordPress Application Password |
The project has two parts: a WordPress plugin and an MCP server.
The WordPress plugin adds the AI Actions UI to the block editor and manages a command queue. When you trigger an action (like "Proofread"), the plugin sends the command to the MCP server via WordPress REST API endpoints and real-time Yjs sync.
The MCP server (the npm package) runs locally on your machine and bridges Claude Code with WordPress. It connects to the same Yjs CRDT-based collaborative editing infrastructure that powers multi-user editing in the block editor, so Claude's edits merge seamlessly with human edits.
See CLAUDE.md for architecture details, sync protocol documentation, and key design decisions.
npm install
npm run build # Build with tsup → dist/
npm test # Run vitest
npm run typecheck # TypeScript type check
npm run lint # ESLint + markdownlint + Prettier check
npm run dev # Watch mode build
cd wordpress-plugin
npm install
npm run build # Build with @wordpress/scripts → build/
npm run typecheck # TypeScript type check
npm run test # TypeScript tests
composer install
composer phpcs # PHP CodeSniffer
composer phpstan # PHPStan static analysis
Run npm run lint from the repo root to lint everything (ESLint + stylelint + markdownlint + Prettier).
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by activepieces
A self‑hosted, open‑source platform that provides a no‑code builder for creating, versioning, and running AI‑driven automation workflows. Pieces are TypeScript‑based plugins that become MCP servers, allowing direct consumption by large language models.
by Skyvern-AI
Automates browser‑based workflows by leveraging large language models and computer‑vision techniques, turning natural‑language prompts into fully functional web interactions without writing custom scripts.
by ahujasid
Enables Claude AI to control Blender for prompt‑assisted 3D modeling, scene creation, and manipulation via a socket‑based Model Context Protocol server.
by PipedreamHQ
Connect APIs quickly with a free, hosted integration platform that enables event‑driven automations across 1,000+ services and supports custom code in Node.js, Python, Go, or Bash.
by elie222
Organizes email inbox, drafts replies in the user's tone, tracks follow‑ups, and provides analytics to achieve inbox zero quickly.
by grab
Enables Cursor AI to read and programmatically modify Figma designs through a Model Context Protocol integration.
by CursorTouch
Enables AI agents to control the Windows operating system, performing file navigation, application launching, UI interaction, QA testing, and other automation tasks through a lightweight server.
by ahujasid
Enables Claude AI to control Ableton Live in real time, allowing AI‑driven creation, editing, and playback of tracks, clips, instruments, and effects through a socket‑based server.
by leonardsellem
Provides tools and resources to enable AI assistants to manage and execute n8n workflows via natural language commands.
{
"mcpServers": {
"claudaborative-editing": {
"command": "npx",
"args": [
"claudaborative-editing",
"start"
],
"env": {}
}
}
}claude mcp add claudaborative-editing npx claudaborative-editing start