@nexaforge/setup
v0.1.5
Published
Install NexaForge MCP plugins into Claude Code with one command
Maintainers
Readme
@nexaforge/setup
Install all NexaForge MCP plugins into Claude Code with one command.
Quick Start
npx @nexaforge/setupThis will:
- Fetch all
@nexaforge/*packages from npm - Register them as MCP servers in Claude Code
- Make them available as tools in Claude
What It Does
The installer automatically:
- Queries npm registry for all
@nexaforge/*scoped packages - Attempts to use
claude mcp addCLI if available - Falls back to direct
~/.claude/settings.jsonediting if needed - Configures each plugin to run via
npx @nexaforge/<plugin-name>
Available Commands
Install All Plugins
npx @nexaforge/setupList Available Plugins
npx @nexaforge/setup --listShows all available NexaForge plugins without installing.
Uninstall All Plugins
npx @nexaforge/setup --uninstallRemoves all NexaForge MCP servers from Claude Code settings.
Manual Setup Alternative
If you prefer manual setup, add this to ~/.claude/settings.json:
{
"mcpServers": {
"nexaforge-activepieces": {
"command": "npx",
"args": ["@nexaforge/activepieces"]
},
"nexaforge-cherrystudio": {
"command": "npx",
"args": ["@nexaforge/cherrystudio"]
}
}
}After Installation
Restart Claude Code to activate the newly installed plugins.
Requirements
- Node.js 18.0.0 or higher
- npm or equivalent package manager
- Claude Code (Claude CLI)
License
MIT
