Copper
/install copper
🟤 Copper CRM
Copper CRM integration — manage people, companies, opportunities, projects, tasks, and activities via the Copper REST API.
Features
- People management — contacts with full CRUD and search
- Company tracking — organizations, details, relationships
- Opportunity pipeline — deals, stages, values, win rates
- Project management — track projects with stages and tasks
- Task management — create, assign, complete tasks
- Activity logging — calls, meetings, notes on any record
- Relationship mapping — see connections between records
- Search across all entity types
- Custom fields — read and write custom field values
- Pipeline reports — value, velocity, conversion metrics
Requirements
| Variable | Required | Description |
|---|---|---|
COPPER_API_KEY |
✅ | API key/token for Copper CRM |
COPPER_EMAIL |
✅ | Your Copper account email |
Quick Start
# List people/contacts
python3 {baseDir}/scripts/copper.py people --limit 20
# Get person details
python3 {baseDir}/scripts/copper.py person-get 12345
# Create a person
python3 {baseDir}/scripts/copper.py person-create '{"name":"Jane Doe","emails":[{"email":"[email protected]"}]}'
# Update a person
python3 {baseDir}/scripts/copper.py person-update 12345 '{"title":"VP Sales"}'
Commands
people
List people/contacts.
python3 {baseDir}/scripts/copper.py people --limit 20
person-get
Get person details.
python3 {baseDir}/scripts/copper.py person-get 12345
person-create
Create a person.
python3 {baseDir}/scripts/copper.py person-create '{"name":"Jane Doe","emails":[{"email":"[email protected]"}]}'
person-update
Update a person.
python3 {baseDir}/scripts/copper.py person-update 12345 '{"title":"VP Sales"}'
companies
List companies.
python3 {baseDir}/scripts/copper.py companies --limit 20
company-create
Create a company.
python3 {baseDir}/scripts/copper.py company-create '{"name":"Acme Corp"}'
opportunities
List opportunities.
python3 {baseDir}/scripts/copper.py opportunities --limit 20
opportunity-create
Create opportunity.
python3 {baseDir}/scripts/copper.py opportunity-create '{"name":"Acme Deal","monetary_value":50000}'
projects
List projects.
python3 {baseDir}/scripts/copper.py projects --limit 20
tasks
List tasks.
python3 {baseDir}/scripts/copper.py tasks --limit 20 --status open
task-create
Create a task.
python3 {baseDir}/scripts/copper.py task-create '{"name":"Follow up","due_date":"2026-03-01"}'
activities
List activities for a record.
python3 {baseDir}/scripts/copper.py activities --person 12345
search
Search across all records.
python3 {baseDir}/scripts/copper.py search "Acme"
pipelines
List pipelines.
python3 {baseDir}/scripts/copper.py pipelines
pipeline-report
Pipeline summary report.
python3 {baseDir}/scripts/copper.py pipeline-report
Output Format
All commands output JSON by default. Add --human for readable formatted output.
# JSON (default, for programmatic use)
python3 {baseDir}/scripts/copper.py people --limit 5
# Human-readable
python3 {baseDir}/scripts/copper.py people --limit 5 --human
Script Reference
| Script | Description |
|---|---|
{baseDir}/scripts/copper.py |
Main CLI — all Copper CRM operations |
Data Policy
This skill never stores data locally. All requests go directly to the Copper CRM API and results are returned to stdout. Your data stays on Copper CRM servers.
Credits
Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.
📅 Need help setting up OpenClaw for your business? Book a free consultation
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install copper - 安装完成后,直接呼叫该 Skill 的名称或使用
/copper触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Copper 是什么?
Copper CRM integration — manage people, companies, opportunities, projects, tasks, and activities via the Copper REST API. Google Workspace native CRM with r... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 391 次。
如何安装 Copper?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install copper」即可一键安装,无需额外配置。
Copper 是免费的吗?
是的,Copper 完全免费(开源免费),可自由下载、安装和使用。
Copper 支持哪些平台?
Copper 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Copper?
由 aiwithabidi(@aiwithabidi)开发并维护,当前版本 v1.0.0。