Installation & Setup

Requirements

Installation

npm (global)

npm install -g simplified-cli

Verify:

simplified --help

Claude Code Plugin

Install Simplified CLI as a Claude Code plugin to manage social media directly from your AI coding assistant:

/plugin marketplace add celeryhq/simplified-cli
/plugin install simplified-cli

Once installed, Claude Code uses simplified commands as tools in agentic workflows — no extra configuration needed.

OpenClaw

Simplified CLI works natively with OpenClaw and any open-source AI agent that supports shell tool use:

npm install -g simplified-cli

OpenClaw can then invoke simplified <command> directly. JSON output makes results easy to parse in agent pipelines.

Other AI Agents & LLM Frameworks

Any agent or framework that supports shell/bash execution can drive Simplified CLI:

Agent / FrameworkIntegration
ClaudeClaude Code plugin or bash tool
GPT / OpenAI AgentsFunction calling with bash execution
LangChain / LlamaIndexShellTool or subprocess wrapper
n8n / ZapierExecute Command node
Custom agentsCall simplified <command>, parse JSON from stdout

All commands output JSON — making responses trivial to parse with jq or any JSON library.

Authentication

Simplified CLI uses an API key for authentication. See the Introduction & Authentication guide for full details on how to obtain your key.

Once you have your key, export it as an environment variable:

export SIMPLIFIED_API_KEY=your_api_key_here

Persist it in your shell profile:

echo 'export SIMPLIFIED_API_KEY=your_api_key_here' >> ~/.zshrc
source ~/.zshrc

CI/CD

Set SIMPLIFIED_API_KEY as an environment secret in your CI/CD platform (GitHub Actions, CircleCI, Jenkins, etc.) and it will be available to all simplified commands automatically.

Environment Variables

VariableRequiredDefaultDescription
SIMPLIFIED_API_KEYYour Simplified.com API key
SIMPLIFIED_API_URLhttps://api.simplified.comOverride the base API URL

Verify Setup

simplified accounts:list

Returns a JSON array of connected social media accounts. If the array is empty, connect accounts in the Simplified.com dashboard.