Skip to content

IPTO CLI

The IPTO CLI (ipto) is a command-line tool for interacting with the IPTO data marketplace. It wraps every API endpoint into ergonomic commands, handles presigned-upload orchestration for you, and ships with first-class support for AI agent integrations. Whether you are a developer scripting a data pipeline or an AI assistant acting on behalf of a user, the CLI is the fastest path from intent to action.


Key Features

Feature Details
Interactive & non-interactive modes Rich, human-friendly table output in a terminal; machine-readable JSON when piped or when --output json is set.
JSON output for scripting Every command supports --output json so you can pipe results into jq, scripts, or other tools.
AI agent skill (MCP-compatible) Install a single skill and let Claude, GPT, or any MCP-compatible agent search, upload, and manage resources through natural language.
Presigned upload handling ipto objects upload transparently performs the three-step presigned flow (request URL, PUT file, confirm) in one command.
Tab completion Generate completions for Bash, Zsh, and Fish with ipto completion <shell>.
Config profiles Switch between production, staging, and per-tenant environments with named profiles.

Quick Install

npm install -g @ipto/cli
brew install ipto-ai/tap/ipto
# Linux (amd64)
curl -fsSL https://github.com/ipto-ai/cli/releases/latest/download/ipto-linux-amd64 -o ipto
chmod +x ipto && sudo mv ipto /usr/local/bin/

Verify the installation:

ipto --version

Quick Example

# Authenticate
ipto login

# List your datasets
ipto datasets list
 ID                                    NAME              STATUS   OBJECTS
 d_01JQ3N…                             financial-data    active   142
 d_01JR7K…                             satellite-imgs    draft      0

What's Next

Installation

Platform-specific install instructions, shell completions, and Docker usage.

Installation

Configuration

Authentication, profiles, environment variables, and output formatting.

Configuration

Commands Reference

Full reference for every command, flag, and subcommand.

Commands Reference

AI Agent Skill

Install the MCP-compatible skill and let AI assistants use IPTO directly.

AI Agent Skill