CLI · 90+ TOOLS · ZERO TOKENS
Pipeline CLI. Same 90+ tools. Zero tokens.
Use the same 90+ tools from your terminal - perfect for scripts, CI jobs, and high-volume ops where MCP token cost adds up.
claude code · pipeline-mcp
>How are my campaigns doing this week?
Here's your campaign performance this week:
VP Sales Outreach - 23 replies, 68% acceptance rate
Series B Founders - 12 replies, 45% acceptance rate
Agency Owners - 8 replies, 72% acceptance rate
tools called: list-campaigns, get-campaign-analytics
INSTALL + AUTH
One npm install, one login.
The CLI is generated from the live tool catalog. New tools show up automatically the next time you run.
install and authenticate
npm install -g @pipeline/cli
pipeline login
# paste your API key when promptedEXAMPLE COMMANDS
Every tool, pipeable from your shell.
--json on every command. Pair with jq, awk, or your favorite scripting tool.
List active campaigns
bash
pipeline list-campaigns --status active
pipeline list-campaigns --status active --json | jqBulk import prospects
bash
pipeline add-prospects-bulk \
--campaign-id <id> \
--prospects-json "$(cat leads.json)"Research a company
bash
pipeline research-company \
--workspace-id <id> \
--company-name "Acme Corp"Campaign analytics for a dashboard
bash
pipeline get-campaign-analytics \
--campaign-id <id> --json \
| jq '.replyRate, .meetingsBooked'Run any of the 90+ tools
bash
pipeline run zero-to-outreach --json '{
"workspaceId": "<id>",
"mode": "signal",
"signal": { "type": "keyword", "keywords": ["AI SDR"] }
}'MCP OR CLI?
When to use what. Same data, different shape.
The MCP shines for agentic flows. For scripts, CI jobs, and deterministic ops - use the CLI. Same auth, same data.
When
MCP
CLI
Known action / known endpoint
fine
best
Agentic exploration
best
-
Token cost per call
high
$0
Scriptable in bash
-
yes
CI/CD pipeline
-
yes
Conversational
yes
-
Latency
seconds
ms
Building your own UI
-
-