JSPM

@cloudcli-ai/n8n-nodes-cloud-cli

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 57
  • Score
    100M100P100Q65400F
  • License MIT

n8n node for Cloud CLI - manage development environments and run Claude Code and Cursor CLI agents from n8n

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

    1. Go to https://cloudcli.ai/api-keys
    2. Generate a new API key
    3. Copy and save the key

    2. Add Credentials in n8n

    1. In n8n UI, go to CredentialsNew
    2. Search for "Cloud CLI API"
    3. Enter:
      • Host: https://cloudcli.ai/api/v1 (default)
      • API Key: Your API key
    4. 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 running
    • starting - Environment is starting up
    • running - Environment is active
    • stopping - Environment is shutting down
    • error - Environment encountered an error

    Requirements

    • n8n v1.0.0+
    • CloudCLI account with API key

    Support

    License

    MIT

    Author

    Claude Code UI, Cloud CLI