Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@cloudcli-ai/n8n-nodes-cloud-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Cloud CLI - n8n Node
Manage CloudCLI (formerly known Claude Code UI) development environments and run Claude Code and Cursor CLI AI agents directly from your n8n workflows.
Features
- Environment Management: Create, list, start, stop, and delete development environments
- AI Agent Execution: Run Claude or Cursor agents on your environments
Installation
Follow the installation guide in the n8n community nodes documentation.
Quick Start
1. Get Your API Key
- Go to https://cloudcli.ai/api-keys
- Generate a new API key
- Copy and save the key
2. Add Credentials in n8n
- In n8n UI, go to Credentials → New
- Search for "Cloud CLI API"
- Enter:
- Host:
https://cloudcli.ai/api/v1(default) - API Key: Your API key
- Host:
- Click Save
3. Use the Node
Add "Cloud CLI" node to your workflow. The node supports two resources:
Environment Operations
- List: Get all environments (with optional status filter)
- Get: Get details of a specific environment
- Create: Create a new environment
- Delete: Delete an environment (must be stopped first)
- Start: Start a stopped environment
- Stop: Stop a running environment
Agent Operations
- Execute: Run Claude or Cursor agent on a running environment
Examples
List All Running Environments
{
"resource": "environment",
"operation": "list",
"status": "running"
}Create New Environment
{
"resource": "environment",
"operation": "create",
"name": "My Backend API",
"subdomain": "mybackend-abc123",
"githubUrl": "https://github.com/user/repo"
}Execute AI Agent
{
"resource": "agent",
"operation": "execute",
"agentEnvironmentId": "123e4567-e89b-12d3-a456-426614174000",
"projectName": "backend",
"message": "Add user authentication with JWT",
"provider": "claude"
}Common Workflows
Automated Development Pipeline
Trigger (Linear issue created)
→ Cloud CLI (Create environment)
→ Cloud CLI (Start agent: complete change)
→ Cloud CLI (Stop environment)
→ Slack (Notify results)API Reference
This node connects to the CloudCLI API. Full API documentation: https://developer.cloudcli.ai/
Environment Status Values
stopped- Environment is not runningstarting- Environment is starting uprunning- Environment is activestopping- Environment is shutting downerror- Environment encountered an error
Requirements
- n8n v1.0.0+
- CloudCLI account with API key
Support
- Website: https://cloudcli.ai, https://github.com/siteboon/claudecodeui
- Documentation: https://cloudcli.ai/support
- Issues: https://github.com/siteboon/claudecodeui
License
MIT
Author
Claude Code UI, Cloud CLI