Attio CRM integration for managing companies, people, deals, notes, tasks, and custom objects. Use when working with Attio CRM data, searching contacts, managing sales pipelines, adding notes to records, creating tasks, or syncing prospect information.
name: attio
description: Attio CRM integration for managing companies, people, deals, notes, tasks, and custom objects. Use when working with Attio CRM data, searching contacts, managing sales pipelines, adding notes to records, creating tasks, or syncing prospect information.
Attio CRM
Manage Attio CRM via REST API. Supports companies, people, deals, lists (pipelines), notes, and tasks.
Setup
Set ATTIO_API_KEY in environment or ~/.env:
echo "ATTIO_API_KEY=your_api_key" >> ~/.env
Get your API key: Attio β Workspace Settings β Developers β New Access Token
Quick Reference
Objects (Records)
# List/search records
attio objects list # List available objects
attio records list
Lists (Pipelines)
attio lists list # Show all pipelines/lists
attio entries list # List entries in a pipeline
attio entries add # Add record to pipeline
Notes
attio notes list # Notes on a record
attio notes create
Tasks
attio tasks list # All tasks
attio tasks create [deadline] # Create task (deadline: YYYY-MM-DD)
attio tasks complete # Mark complete
Examples
Find a company and add a note
# Search for company
attio records search companies "Acme"
Add note to the company (using record_id from search)