You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run directly without installing
npx @biznetgio/cli@latest <service><action> [options]
# Or install globally
npm install -g @biznetgio/cli
biznetgio <service><action> [options]
Global Options
Option
Description
Default
--api-key <key>
API key (overrides env var)
BIZNETGIO_API_KEY
--output <format>
Output format: json or table
json
-V, --version
Show version
-h, --help
Show help
Usage Examples
# List all NEO Metal servers
npx @biznetgio/cli@latest metal list
# Server detail with table output
npx @biznetgio/cli@latest metal detail 12345 --output table
# List NEO Lite products
npx @biznetgio/cli@latest neolite products
# Create a NEO Lite instance
npx @biznetgio/cli@latest neolite create \
--product-id 1 \
--cycle m \
--select-os ubuntu-22.04 \
--keypair-id 10 \
--ssh-and-console-user myuser \
--console-password MyP@ssw0rd
# Manage VM state
npx @biznetgio/cli@latest neolite set-state 12345 start
npx @biznetgio/cli@latest neolite set-state 12345 stop
# List object storage buckets
npx @biznetgio/cli@latest object-storage bucket list 12345
# Generate a signed URL for an object
npx @biznetgio/cli@latest object-storage object url 12345 my-bucket file.pdf --expiry 3600
# Manage keypairs
npx @biznetgio/cli@latest metal keypair list
npx @biznetgio/cli@latest metal keypair create --name my-key
# Override API key per command
npx @biznetgio/cli@latest metal list --api-key another_key_here
# Test MCP server startupecho'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}'| BIZNETGIO_API_KEY=test npx @biznetgio/mcp@latest