Attio Automation
Automate Attio CRM operations -- search records, query contacts and companies with advanced filters, manage notes, list attributes, and navigate your relationship data -- using natural language through the Composio MCP integration.
Install / Use
npx skills add ComposioHQ/awesome-claude-skills --skill attio-automationInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
AutomationSupported Platforms
Our assessment of Attio Automation
Attio Automation scores 95/100 on our quality scale, 37th of 860 Automation skills we index (top 5%).
Its SKILL.md is 6.1 KB long, well organised into 11 sections with 1 code example: a thorough specification that gives an agent plenty to work with.
With 75,586 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 6 days ago, so Attio Automation is actively maintained.
- No license is declared. By default that means all rights are reserved: you can read it, but reusing or redistributing it is not clearly permitted. Ask the author before building on it commercially.
- Its trust signals score 88/100, with 1 caution from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-24. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
Attio Automation compared with similar skills
All 4 of these similar skills score higher than Attio Automation; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| Attio Automation (this skill)by ComposioHQ | 95 | 75.6k | 6d ago | SKILL.md |
| Agent-Reachby Panniantong | 100 | 85.3k | 9d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.7k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.2k | today | CLAUDE.md |
| CowAgentby zhayujie | 100 | 47.1k | today | CLAUDE.md |
Frequently asked questions
- How do I install Attio Automation?
- Run
npx skills add ComposioHQ/awesome-claude-skills --skill "Attio Automation". The install tabs above show the steps for each supported agent. - Which AI agents does Attio Automation work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is Attio Automation safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It declares no license and scores 88/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is Attio Automation still maintained?
- The repository was last updated 6 days ago, so Attio Automation is actively maintained.
Skill content
View source on GitHubname: Attio Automation description: "Automate Attio CRM operations -- search records, query contacts and companies with advanced filters, manage notes, list attributes, and navigate your relationship data -- using natural language through the Composio MCP integration." category: crm requires: mcp: - rube
Attio Automation
Manage your Attio CRM workspace -- fuzzy search across people and companies, run complex filtered queries, browse notes, discover object schemas, and list records -- all through natural language commands.
Toolkit docs: composio.dev/toolkits/attio
Setup
- Add the Composio MCP server to your client configuration:
https://rube.app/mcp - Connect your Attio account when prompted (OAuth authentication).
- Start issuing natural language commands to manage your CRM data.
Core Workflows
1. Fuzzy Search Across Records
Search for people, companies, deals, or any object by name, domain, email, phone, or social handle.
Tool: ATTIO_SEARCH_RECORDS
Example prompt:
"Search Attio for anyone named Alan Mathis"
Key parameters (all required):
query-- Search string (max 256 characters). Empty string returns default results.objects-- Array of object slugs to search (e.g.,["people"],["people", "companies"],["deals"])request_as-- Context: use{"type": "workspace"}for full workspace search, or specify a workspace member
2. Advanced Filtered Queries
Query records with server-side filtering, sorting, and complex conditions -- far more powerful than fuzzy search.
Tool: ATTIO_QUERY_RECORDS
Example prompt:
"Find all companies in Attio created after January 2025 sorted by name"
Key parameters:
object(required) -- Object slug or UUID (e.g., "people", "companies", "deals")filter-- Attio filter object with operators like$eq,$contains,$gte,$and,$orsorts-- Array of sort specifications withdirection("asc"/"desc") andattributelimit-- Max records to return (up to 500)offset-- Pagination offset
Filter examples:
{"name": {"first_name": {"$contains": "John"}}}
{"email_addresses": {"$contains": "@example.com"}}
{"created_at": {"$gte": "2025-01-01T00:00:00.000Z"}}
3. Find Records by ID or Attributes
Look up a specific record by its unique ID or search by unique attribute values.
Tool: ATTIO_FIND_RECORD
Example prompt:
"Find the Attio company with domain example.com"
Key parameters:
object_id(required) -- Object type slug: "people", "companies", "deals", "users", "workspaces"record_id-- Direct lookup by UUID (optional)attributes-- Dictionary of attribute filters (e.g.,{"email_addresses": "john@example.com"})limit-- Max records (up to 1000)offset-- Pagination offset
4. Browse and Filter Notes
List notes across the workspace or filter by specific parent objects and records.
Tool: ATTIO_LIST_NOTES
Example prompt:
"Show the last 10 notes on the Acme Corp company record in Attio"
Key parameters:
parent_object-- Object slug (e.g., "people", "companies", "deals") -- requiresparent_record_idparent_record_id-- UUID of the parent record -- requiresparent_objectlimit-- Max notes to return (1-50, default 10)offset-- Number of results to skip
5. Discover Object Schemas and Attributes
Understand your workspace structure by listing objects and their attribute definitions.
Tools: ATTIO_GET_OBJECT, ATTIO_LIST_ATTRIBUTES
Example prompt:
"What attributes does the companies object have in Attio?"
Key parameters for Get Object:
object_id-- Object slug or UUID
Key parameters for List Attributes:
target-- "objects" or "lists"identifier-- Object or list ID/slug
6. List All Records
Retrieve records from a specific object type with simple pagination, returned in creation order.
Tool: ATTIO_LIST_RECORDS
Example prompt:
"List the first 100 people records in Attio"
Key parameters:
- Object type identifier
- Pagination parameters
Known Pitfalls
- Timestamp format is critical: ALL timestamp comparisons (
created_at,updated_at, custom timestamps) MUST use ISO8601 string format (e.g.,2025-01-01T00:00:00.000Z). Unix timestamps or numeric values cause "Invalid timestamp value" errors. - Name attributes must be nested: The
nameattribute has sub-properties (first_name,last_name,full_name) that MUST be nested undername. Correct:{"name": {"first_name": {"$contains": "John"}}}. Wrong:{"first_name": {...}}-- this fails with "unknown_filter_attribute_slug". - Email operators are limited:
email_addressessupports$eq,$contains,$starts_with,$ends_withbut NOT$not_empty. - Record-reference attributes need path filtering: For attributes that reference other records (e.g., "team", "company"), use path-based filtering, not nested syntax. Example:
{"path": [["companies", "team"], ["people", "name"]], "constraints": {"first_name": {"$eq": "John"}}}. - "lists" is not an object type: Do not use "lists" as an
object_id. Use list-specific actions for list operations. - Search is eventually consistent:
ATTIO_SEARCH_RECORDSreturns eventually consistent results. For guaranteed up-to-date results, useATTIO_QUERY_RECORDSinstead. - Attribute slugs vary by workspace: System attributes (e.g., "email_addresses", "name") are consistent, but custom attributes vary. Use
ATTIO_LIST_ATTRIBUTESto discover valid slugs for your workspace.
Quick Reference
| Action | Tool Slug | Required Params |
|---|---|---|
| Fuzzy search records | ATTIO_SEARCH_RECORDS | query, objects, request_as |
| Query with filters | ATTIO_QUERY_RECORDS | object |
| Find record by ID/attributes | ATTIO_FIND_RECORD | object_id |
| List notes | ATTIO_LIST_NOTES | None (optional filters) |
| Get object schema | ATTIO_GET_OBJECT | object_id |
| List attributes | ATTIO_LIST_ATTRIBUTES | target, identifier |
| List records | ATTIO_LIST_RECORDS | Object type |
Powered by Composio
Related Skills
Agent-Reach
85.3kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.7kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.2k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
