[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-attio-automation":3,"mdc--wztdo5-key":48,"related-repo-composio-attio-automation":1517,"related-org-composio-attio-automation":1602},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":43,"sourceUrl":46,"mdContent":47},"attio-automation","Attio Automation","automate Attio CRM operations","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.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[14,16,19],{"name":10,"slug":9,"type":15},"tag",{"name":17,"slug":18,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},"CRM","crm",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:44:52.810181",null,7603,[28,29,30,18,31,32,33,9,34,35,36,37,38,39,40,41,42],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","mcp","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":23,"stars":22,"forks":26,"topics":44,"description":45},[28,29,30,18,31,32,33,9,34,35,36,37,38,39,40,41,42],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fcomposio-skills\u002Fattio-automation","---\nname: Attio Automation\ndescription: \"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.\"\ncategory: crm\nrequires:\n  mcp:\n    - rube\n---\n\n# Attio Automation\n\nManage 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.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fattio](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fattio)\n\n---\n\n## Setup\n\n1. Add the Composio MCP server to your client configuration:\n   ```\n   https:\u002F\u002Frube.app\u002Fmcp\n   ```\n2. Connect your Attio account when prompted (OAuth authentication).\n3. Start issuing natural language commands to manage your CRM data.\n\n---\n\n## Core Workflows\n\n### 1. Fuzzy Search Across Records\nSearch for people, companies, deals, or any object by name, domain, email, phone, or social handle.\n\n**Tool:** `ATTIO_SEARCH_RECORDS`\n\n**Example prompt:**\n> \"Search Attio for anyone named Alan Mathis\"\n\n**Key parameters (all required):**\n- `query` -- Search string (max 256 characters). Empty string returns default results.\n- `objects` -- Array of object slugs to search (e.g., `[\"people\"]`, `[\"people\", \"companies\"]`, `[\"deals\"]`)\n- `request_as` -- Context: use `{\"type\": \"workspace\"}` for full workspace search, or specify a workspace member\n\n---\n\n### 2. Advanced Filtered Queries\nQuery records with server-side filtering, sorting, and complex conditions -- far more powerful than fuzzy search.\n\n**Tool:** `ATTIO_QUERY_RECORDS`\n\n**Example prompt:**\n> \"Find all companies in Attio created after January 2025 sorted by name\"\n\n**Key parameters:**\n- `object` (required) -- Object slug or UUID (e.g., \"people\", \"companies\", \"deals\")\n- `filter` -- Attio filter object with operators like `$eq`, `$contains`, `$gte`, `$and`, `$or`\n- `sorts` -- Array of sort specifications with `direction` (\"asc\"\u002F\"desc\") and `attribute`\n- `limit` -- Max records to return (up to 500)\n- `offset` -- Pagination offset\n\n**Filter examples:**\n```json\n{\"name\": {\"first_name\": {\"$contains\": \"John\"}}}\n{\"email_addresses\": {\"$contains\": \"@example.com\"}}\n{\"created_at\": {\"$gte\": \"2025-01-01T00:00:00.000Z\"}}\n```\n\n---\n\n### 3. Find Records by ID or Attributes\nLook up a specific record by its unique ID or search by unique attribute values.\n\n**Tool:** `ATTIO_FIND_RECORD`\n\n**Example prompt:**\n> \"Find the Attio company with domain example.com\"\n\n**Key parameters:**\n- `object_id` (required) -- Object type slug: \"people\", \"companies\", \"deals\", \"users\", \"workspaces\"\n- `record_id` -- Direct lookup by UUID (optional)\n- `attributes` -- Dictionary of attribute filters (e.g., `{\"email_addresses\": \"john@example.com\"}`)\n- `limit` -- Max records (up to 1000)\n- `offset` -- Pagination offset\n\n---\n\n### 4. Browse and Filter Notes\nList notes across the workspace or filter by specific parent objects and records.\n\n**Tool:** `ATTIO_LIST_NOTES`\n\n**Example prompt:**\n> \"Show the last 10 notes on the Acme Corp company record in Attio\"\n\n**Key parameters:**\n- `parent_object` -- Object slug (e.g., \"people\", \"companies\", \"deals\") -- requires `parent_record_id`\n- `parent_record_id` -- UUID of the parent record -- requires `parent_object`\n- `limit` -- Max notes to return (1-50, default 10)\n- `offset` -- Number of results to skip\n\n---\n\n### 5. Discover Object Schemas and Attributes\nUnderstand your workspace structure by listing objects and their attribute definitions.\n\n**Tools:** `ATTIO_GET_OBJECT`, `ATTIO_LIST_ATTRIBUTES`\n\n**Example prompt:**\n> \"What attributes does the companies object have in Attio?\"\n\n**Key parameters for Get Object:**\n- `object_id` -- Object slug or UUID\n\n**Key parameters for List Attributes:**\n- `target` -- \"objects\" or \"lists\"\n- `identifier` -- Object or list ID\u002Fslug\n\n---\n\n### 6. List All Records\nRetrieve records from a specific object type with simple pagination, returned in creation order.\n\n**Tool:** `ATTIO_LIST_RECORDS`\n\n**Example prompt:**\n> \"List the first 100 people records in Attio\"\n\n**Key parameters:**\n- Object type identifier\n- Pagination parameters\n\n---\n\n## Known Pitfalls\n\n- **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.\n- **Name attributes must be nested**: The `name` attribute has sub-properties (`first_name`, `last_name`, `full_name`) that MUST be nested under `name`. Correct: `{\"name\": {\"first_name\": {\"$contains\": \"John\"}}}`. Wrong: `{\"first_name\": {...}}` -- this fails with \"unknown_filter_attribute_slug\".\n- **Email operators are limited**: `email_addresses` supports `$eq`, `$contains`, `$starts_with`, `$ends_with` but NOT `$not_empty`.\n- **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\"}}}`.\n- **\"lists\" is not an object type**: Do not use \"lists\" as an `object_id`. Use list-specific actions for list operations.\n- **Search is eventually consistent**: `ATTIO_SEARCH_RECORDS` returns eventually consistent results. For guaranteed up-to-date results, use `ATTIO_QUERY_RECORDS` instead.\n- **Attribute slugs vary by workspace**: System attributes (e.g., \"email_addresses\", \"name\") are consistent, but custom attributes vary. Use `ATTIO_LIST_ATTRIBUTES` to discover valid slugs for your workspace.\n\n---\n\n## Quick Reference\n\n| Action | Tool Slug | Required Params |\n|---|---|---|\n| Fuzzy search records | `ATTIO_SEARCH_RECORDS` | `query`, `objects`, `request_as` |\n| Query with filters | `ATTIO_QUERY_RECORDS` | `object` |\n| Find record by ID\u002Fattributes | `ATTIO_FIND_RECORD` | `object_id` |\n| List notes | `ATTIO_LIST_NOTES` | None (optional filters) |\n| Get object schema | `ATTIO_GET_OBJECT` | `object_id` |\n| List attributes | `ATTIO_LIST_ATTRIBUTES` | `target`, `identifier` |\n| List records | `ATTIO_LIST_RECORDS` | Object type |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":49,"body":52},{"name":5,"description":7,"category":21,"requires":50},{"mcp":51},[39],{"type":53,"children":54},"root",[55,62,68,88,92,99,132,135,141,148,153,168,176,185,193,261,264,270,275,289,296,304,312,418,426,656,659,665,670,684,691,699,706,768,771,777,782,796,803,811,818,873,876,882,887,909,916,924,932,945,953,978,981,987,992,1006,1013,1021,1028,1041,1044,1050,1271,1274,1280,1493,1496,1511],{"type":56,"tag":57,"props":58,"children":59},"element","h1",{"id":4},[60],{"type":61,"value":5},"text",{"type":56,"tag":63,"props":64,"children":65},"p",{},[66],{"type":61,"value":67},"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.",{"type":56,"tag":63,"props":69,"children":70},{},[71,77,79],{"type":56,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":61,"value":76},"Toolkit docs:",{"type":61,"value":78}," ",{"type":56,"tag":80,"props":81,"children":85},"a",{"href":82,"rel":83},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fattio",[84],"nofollow",[86],{"type":61,"value":87},"composio.dev\u002Ftoolkits\u002Fattio",{"type":56,"tag":89,"props":90,"children":91},"hr",{},[],{"type":56,"tag":93,"props":94,"children":96},"h2",{"id":95},"setup",[97],{"type":61,"value":98},"Setup",{"type":56,"tag":100,"props":101,"children":102},"ol",{},[103,122,127],{"type":56,"tag":104,"props":105,"children":106},"li",{},[107,109],{"type":61,"value":108},"Add the Composio MCP server to your client configuration:\n",{"type":56,"tag":110,"props":111,"children":115},"pre",{"className":112,"code":114,"language":61},[113],"language-text","https:\u002F\u002Frube.app\u002Fmcp\n",[116],{"type":56,"tag":117,"props":118,"children":120},"code",{"__ignoreMap":119},"",[121],{"type":61,"value":114},{"type":56,"tag":104,"props":123,"children":124},{},[125],{"type":61,"value":126},"Connect your Attio account when prompted (OAuth authentication).",{"type":56,"tag":104,"props":128,"children":129},{},[130],{"type":61,"value":131},"Start issuing natural language commands to manage your CRM data.",{"type":56,"tag":89,"props":133,"children":134},{},[],{"type":56,"tag":93,"props":136,"children":138},{"id":137},"core-workflows",[139],{"type":61,"value":140},"Core Workflows",{"type":56,"tag":142,"props":143,"children":145},"h3",{"id":144},"_1-fuzzy-search-across-records",[146],{"type":61,"value":147},"1. Fuzzy Search Across Records",{"type":56,"tag":63,"props":149,"children":150},{},[151],{"type":61,"value":152},"Search for people, companies, deals, or any object by name, domain, email, phone, or social handle.",{"type":56,"tag":63,"props":154,"children":155},{},[156,161,162],{"type":56,"tag":72,"props":157,"children":158},{},[159],{"type":61,"value":160},"Tool:",{"type":61,"value":78},{"type":56,"tag":117,"props":163,"children":165},{"className":164},[],[166],{"type":61,"value":167},"ATTIO_SEARCH_RECORDS",{"type":56,"tag":63,"props":169,"children":170},{},[171],{"type":56,"tag":72,"props":172,"children":173},{},[174],{"type":61,"value":175},"Example prompt:",{"type":56,"tag":177,"props":178,"children":179},"blockquote",{},[180],{"type":56,"tag":63,"props":181,"children":182},{},[183],{"type":61,"value":184},"\"Search Attio for anyone named Alan Mathis\"",{"type":56,"tag":63,"props":186,"children":187},{},[188],{"type":56,"tag":72,"props":189,"children":190},{},[191],{"type":61,"value":192},"Key parameters (all required):",{"type":56,"tag":194,"props":195,"children":196},"ul",{},[197,208,242],{"type":56,"tag":104,"props":198,"children":199},{},[200,206],{"type":56,"tag":117,"props":201,"children":203},{"className":202},[],[204],{"type":61,"value":205},"query",{"type":61,"value":207}," -- Search string (max 256 characters). Empty string returns default results.",{"type":56,"tag":104,"props":209,"children":210},{},[211,217,219,225,227,233,234,240],{"type":56,"tag":117,"props":212,"children":214},{"className":213},[],[215],{"type":61,"value":216},"objects",{"type":61,"value":218}," -- Array of object slugs to search (e.g., ",{"type":56,"tag":117,"props":220,"children":222},{"className":221},[],[223],{"type":61,"value":224},"[\"people\"]",{"type":61,"value":226},", ",{"type":56,"tag":117,"props":228,"children":230},{"className":229},[],[231],{"type":61,"value":232},"[\"people\", \"companies\"]",{"type":61,"value":226},{"type":56,"tag":117,"props":235,"children":237},{"className":236},[],[238],{"type":61,"value":239},"[\"deals\"]",{"type":61,"value":241},")",{"type":56,"tag":104,"props":243,"children":244},{},[245,251,253,259],{"type":56,"tag":117,"props":246,"children":248},{"className":247},[],[249],{"type":61,"value":250},"request_as",{"type":61,"value":252}," -- Context: use ",{"type":56,"tag":117,"props":254,"children":256},{"className":255},[],[257],{"type":61,"value":258},"{\"type\": \"workspace\"}",{"type":61,"value":260}," for full workspace search, or specify a workspace member",{"type":56,"tag":89,"props":262,"children":263},{},[],{"type":56,"tag":142,"props":265,"children":267},{"id":266},"_2-advanced-filtered-queries",[268],{"type":61,"value":269},"2. Advanced Filtered Queries",{"type":56,"tag":63,"props":271,"children":272},{},[273],{"type":61,"value":274},"Query records with server-side filtering, sorting, and complex conditions -- far more powerful than fuzzy search.",{"type":56,"tag":63,"props":276,"children":277},{},[278,282,283],{"type":56,"tag":72,"props":279,"children":280},{},[281],{"type":61,"value":160},{"type":61,"value":78},{"type":56,"tag":117,"props":284,"children":286},{"className":285},[],[287],{"type":61,"value":288},"ATTIO_QUERY_RECORDS",{"type":56,"tag":63,"props":290,"children":291},{},[292],{"type":56,"tag":72,"props":293,"children":294},{},[295],{"type":61,"value":175},{"type":56,"tag":177,"props":297,"children":298},{},[299],{"type":56,"tag":63,"props":300,"children":301},{},[302],{"type":61,"value":303},"\"Find all companies in Attio created after January 2025 sorted by name\"",{"type":56,"tag":63,"props":305,"children":306},{},[307],{"type":56,"tag":72,"props":308,"children":309},{},[310],{"type":61,"value":311},"Key parameters:",{"type":56,"tag":194,"props":313,"children":314},{},[315,326,371,396,407],{"type":56,"tag":104,"props":316,"children":317},{},[318,324],{"type":56,"tag":117,"props":319,"children":321},{"className":320},[],[322],{"type":61,"value":323},"object",{"type":61,"value":325}," (required) -- Object slug or UUID (e.g., \"people\", \"companies\", \"deals\")",{"type":56,"tag":104,"props":327,"children":328},{},[329,335,337,343,344,350,351,357,358,364,365],{"type":56,"tag":117,"props":330,"children":332},{"className":331},[],[333],{"type":61,"value":334},"filter",{"type":61,"value":336}," -- Attio filter object with operators like ",{"type":56,"tag":117,"props":338,"children":340},{"className":339},[],[341],{"type":61,"value":342},"$eq",{"type":61,"value":226},{"type":56,"tag":117,"props":345,"children":347},{"className":346},[],[348],{"type":61,"value":349},"$contains",{"type":61,"value":226},{"type":56,"tag":117,"props":352,"children":354},{"className":353},[],[355],{"type":61,"value":356},"$gte",{"type":61,"value":226},{"type":56,"tag":117,"props":359,"children":361},{"className":360},[],[362],{"type":61,"value":363},"$and",{"type":61,"value":226},{"type":56,"tag":117,"props":366,"children":368},{"className":367},[],[369],{"type":61,"value":370},"$or",{"type":56,"tag":104,"props":372,"children":373},{},[374,380,382,388,390],{"type":56,"tag":117,"props":375,"children":377},{"className":376},[],[378],{"type":61,"value":379},"sorts",{"type":61,"value":381}," -- Array of sort specifications with ",{"type":56,"tag":117,"props":383,"children":385},{"className":384},[],[386],{"type":61,"value":387},"direction",{"type":61,"value":389}," (\"asc\"\u002F\"desc\") and ",{"type":56,"tag":117,"props":391,"children":393},{"className":392},[],[394],{"type":61,"value":395},"attribute",{"type":56,"tag":104,"props":397,"children":398},{},[399,405],{"type":56,"tag":117,"props":400,"children":402},{"className":401},[],[403],{"type":61,"value":404},"limit",{"type":61,"value":406}," -- Max records to return (up to 500)",{"type":56,"tag":104,"props":408,"children":409},{},[410,416],{"type":56,"tag":117,"props":411,"children":413},{"className":412},[],[414],{"type":61,"value":415},"offset",{"type":61,"value":417}," -- Pagination offset",{"type":56,"tag":63,"props":419,"children":420},{},[421],{"type":56,"tag":72,"props":422,"children":423},{},[424],{"type":61,"value":425},"Filter examples:",{"type":56,"tag":110,"props":427,"children":431},{"className":428,"code":429,"language":430,"meta":119,"style":119},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\"name\": {\"first_name\": {\"$contains\": \"John\"}}}\n{\"email_addresses\": {\"$contains\": \"@example.com\"}}\n{\"created_at\": {\"$gte\": \"2025-01-01T00:00:00.000Z\"}}\n","json",[432],{"type":56,"tag":117,"props":433,"children":434},{"__ignoreMap":119},[435,531,594],{"type":56,"tag":436,"props":437,"children":440},"span",{"class":438,"line":439},"line",1,[441,447,452,458,462,467,472,476,482,486,490,494,498,503,507,511,516,522,526],{"type":56,"tag":436,"props":442,"children":444},{"style":443},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[445],{"type":61,"value":446},"{",{"type":56,"tag":436,"props":448,"children":449},{"style":443},[450],{"type":61,"value":451},"\"",{"type":56,"tag":436,"props":453,"children":455},{"style":454},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[456],{"type":61,"value":457},"name",{"type":56,"tag":436,"props":459,"children":460},{"style":443},[461],{"type":61,"value":451},{"type":56,"tag":436,"props":463,"children":464},{"style":443},[465],{"type":61,"value":466},":",{"type":56,"tag":436,"props":468,"children":469},{"style":443},[470],{"type":61,"value":471}," {",{"type":56,"tag":436,"props":473,"children":474},{"style":443},[475],{"type":61,"value":451},{"type":56,"tag":436,"props":477,"children":479},{"style":478},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[480],{"type":61,"value":481},"first_name",{"type":56,"tag":436,"props":483,"children":484},{"style":443},[485],{"type":61,"value":451},{"type":56,"tag":436,"props":487,"children":488},{"style":443},[489],{"type":61,"value":466},{"type":56,"tag":436,"props":491,"children":492},{"style":443},[493],{"type":61,"value":471},{"type":56,"tag":436,"props":495,"children":496},{"style":443},[497],{"type":61,"value":451},{"type":56,"tag":436,"props":499,"children":501},{"style":500},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[502],{"type":61,"value":349},{"type":56,"tag":436,"props":504,"children":505},{"style":443},[506],{"type":61,"value":451},{"type":56,"tag":436,"props":508,"children":509},{"style":443},[510],{"type":61,"value":466},{"type":56,"tag":436,"props":512,"children":513},{"style":443},[514],{"type":61,"value":515}," \"",{"type":56,"tag":436,"props":517,"children":519},{"style":518},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[520],{"type":61,"value":521},"John",{"type":56,"tag":436,"props":523,"children":524},{"style":443},[525],{"type":61,"value":451},{"type":56,"tag":436,"props":527,"children":528},{"style":443},[529],{"type":61,"value":530},"}}}\n",{"type":56,"tag":436,"props":532,"children":534},{"class":438,"line":533},2,[535,539,543,548,552,556,560,564,568,572,576,580,585,589],{"type":56,"tag":436,"props":536,"children":537},{"style":443},[538],{"type":61,"value":446},{"type":56,"tag":436,"props":540,"children":541},{"style":443},[542],{"type":61,"value":451},{"type":56,"tag":436,"props":544,"children":545},{"style":454},[546],{"type":61,"value":547},"email_addresses",{"type":56,"tag":436,"props":549,"children":550},{"style":443},[551],{"type":61,"value":451},{"type":56,"tag":436,"props":553,"children":554},{"style":443},[555],{"type":61,"value":466},{"type":56,"tag":436,"props":557,"children":558},{"style":443},[559],{"type":61,"value":471},{"type":56,"tag":436,"props":561,"children":562},{"style":443},[563],{"type":61,"value":451},{"type":56,"tag":436,"props":565,"children":566},{"style":478},[567],{"type":61,"value":349},{"type":56,"tag":436,"props":569,"children":570},{"style":443},[571],{"type":61,"value":451},{"type":56,"tag":436,"props":573,"children":574},{"style":443},[575],{"type":61,"value":466},{"type":56,"tag":436,"props":577,"children":578},{"style":443},[579],{"type":61,"value":515},{"type":56,"tag":436,"props":581,"children":582},{"style":518},[583],{"type":61,"value":584},"@example.com",{"type":56,"tag":436,"props":586,"children":587},{"style":443},[588],{"type":61,"value":451},{"type":56,"tag":436,"props":590,"children":591},{"style":443},[592],{"type":61,"value":593},"}}\n",{"type":56,"tag":436,"props":595,"children":597},{"class":438,"line":596},3,[598,602,606,611,615,619,623,627,631,635,639,643,648,652],{"type":56,"tag":436,"props":599,"children":600},{"style":443},[601],{"type":61,"value":446},{"type":56,"tag":436,"props":603,"children":604},{"style":443},[605],{"type":61,"value":451},{"type":56,"tag":436,"props":607,"children":608},{"style":454},[609],{"type":61,"value":610},"created_at",{"type":56,"tag":436,"props":612,"children":613},{"style":443},[614],{"type":61,"value":451},{"type":56,"tag":436,"props":616,"children":617},{"style":443},[618],{"type":61,"value":466},{"type":56,"tag":436,"props":620,"children":621},{"style":443},[622],{"type":61,"value":471},{"type":56,"tag":436,"props":624,"children":625},{"style":443},[626],{"type":61,"value":451},{"type":56,"tag":436,"props":628,"children":629},{"style":478},[630],{"type":61,"value":356},{"type":56,"tag":436,"props":632,"children":633},{"style":443},[634],{"type":61,"value":451},{"type":56,"tag":436,"props":636,"children":637},{"style":443},[638],{"type":61,"value":466},{"type":56,"tag":436,"props":640,"children":641},{"style":443},[642],{"type":61,"value":515},{"type":56,"tag":436,"props":644,"children":645},{"style":518},[646],{"type":61,"value":647},"2025-01-01T00:00:00.000Z",{"type":56,"tag":436,"props":649,"children":650},{"style":443},[651],{"type":61,"value":451},{"type":56,"tag":436,"props":653,"children":654},{"style":443},[655],{"type":61,"value":593},{"type":56,"tag":89,"props":657,"children":658},{},[],{"type":56,"tag":142,"props":660,"children":662},{"id":661},"_3-find-records-by-id-or-attributes",[663],{"type":61,"value":664},"3. Find Records by ID or Attributes",{"type":56,"tag":63,"props":666,"children":667},{},[668],{"type":61,"value":669},"Look up a specific record by its unique ID or search by unique attribute values.",{"type":56,"tag":63,"props":671,"children":672},{},[673,677,678],{"type":56,"tag":72,"props":674,"children":675},{},[676],{"type":61,"value":160},{"type":61,"value":78},{"type":56,"tag":117,"props":679,"children":681},{"className":680},[],[682],{"type":61,"value":683},"ATTIO_FIND_RECORD",{"type":56,"tag":63,"props":685,"children":686},{},[687],{"type":56,"tag":72,"props":688,"children":689},{},[690],{"type":61,"value":175},{"type":56,"tag":177,"props":692,"children":693},{},[694],{"type":56,"tag":63,"props":695,"children":696},{},[697],{"type":61,"value":698},"\"Find the Attio company with domain example.com\"",{"type":56,"tag":63,"props":700,"children":701},{},[702],{"type":56,"tag":72,"props":703,"children":704},{},[705],{"type":61,"value":311},{"type":56,"tag":194,"props":707,"children":708},{},[709,720,731,749,759],{"type":56,"tag":104,"props":710,"children":711},{},[712,718],{"type":56,"tag":117,"props":713,"children":715},{"className":714},[],[716],{"type":61,"value":717},"object_id",{"type":61,"value":719}," (required) -- Object type slug: \"people\", \"companies\", \"deals\", \"users\", \"workspaces\"",{"type":56,"tag":104,"props":721,"children":722},{},[723,729],{"type":56,"tag":117,"props":724,"children":726},{"className":725},[],[727],{"type":61,"value":728},"record_id",{"type":61,"value":730}," -- Direct lookup by UUID (optional)",{"type":56,"tag":104,"props":732,"children":733},{},[734,740,742,748],{"type":56,"tag":117,"props":735,"children":737},{"className":736},[],[738],{"type":61,"value":739},"attributes",{"type":61,"value":741}," -- Dictionary of attribute filters (e.g., ",{"type":56,"tag":117,"props":743,"children":745},{"className":744},[],[746],{"type":61,"value":747},"{\"email_addresses\": \"john@example.com\"}",{"type":61,"value":241},{"type":56,"tag":104,"props":750,"children":751},{},[752,757],{"type":56,"tag":117,"props":753,"children":755},{"className":754},[],[756],{"type":61,"value":404},{"type":61,"value":758}," -- Max records (up to 1000)",{"type":56,"tag":104,"props":760,"children":761},{},[762,767],{"type":56,"tag":117,"props":763,"children":765},{"className":764},[],[766],{"type":61,"value":415},{"type":61,"value":417},{"type":56,"tag":89,"props":769,"children":770},{},[],{"type":56,"tag":142,"props":772,"children":774},{"id":773},"_4-browse-and-filter-notes",[775],{"type":61,"value":776},"4. Browse and Filter Notes",{"type":56,"tag":63,"props":778,"children":779},{},[780],{"type":61,"value":781},"List notes across the workspace or filter by specific parent objects and records.",{"type":56,"tag":63,"props":783,"children":784},{},[785,789,790],{"type":56,"tag":72,"props":786,"children":787},{},[788],{"type":61,"value":160},{"type":61,"value":78},{"type":56,"tag":117,"props":791,"children":793},{"className":792},[],[794],{"type":61,"value":795},"ATTIO_LIST_NOTES",{"type":56,"tag":63,"props":797,"children":798},{},[799],{"type":56,"tag":72,"props":800,"children":801},{},[802],{"type":61,"value":175},{"type":56,"tag":177,"props":804,"children":805},{},[806],{"type":56,"tag":63,"props":807,"children":808},{},[809],{"type":61,"value":810},"\"Show the last 10 notes on the Acme Corp company record in Attio\"",{"type":56,"tag":63,"props":812,"children":813},{},[814],{"type":56,"tag":72,"props":815,"children":816},{},[817],{"type":61,"value":311},{"type":56,"tag":194,"props":819,"children":820},{},[821,838,853,863],{"type":56,"tag":104,"props":822,"children":823},{},[824,830,832],{"type":56,"tag":117,"props":825,"children":827},{"className":826},[],[828],{"type":61,"value":829},"parent_object",{"type":61,"value":831}," -- Object slug (e.g., \"people\", \"companies\", \"deals\") -- requires ",{"type":56,"tag":117,"props":833,"children":835},{"className":834},[],[836],{"type":61,"value":837},"parent_record_id",{"type":56,"tag":104,"props":839,"children":840},{},[841,846,848],{"type":56,"tag":117,"props":842,"children":844},{"className":843},[],[845],{"type":61,"value":837},{"type":61,"value":847}," -- UUID of the parent record -- requires ",{"type":56,"tag":117,"props":849,"children":851},{"className":850},[],[852],{"type":61,"value":829},{"type":56,"tag":104,"props":854,"children":855},{},[856,861],{"type":56,"tag":117,"props":857,"children":859},{"className":858},[],[860],{"type":61,"value":404},{"type":61,"value":862}," -- Max notes to return (1-50, default 10)",{"type":56,"tag":104,"props":864,"children":865},{},[866,871],{"type":56,"tag":117,"props":867,"children":869},{"className":868},[],[870],{"type":61,"value":415},{"type":61,"value":872}," -- Number of results to skip",{"type":56,"tag":89,"props":874,"children":875},{},[],{"type":56,"tag":142,"props":877,"children":879},{"id":878},"_5-discover-object-schemas-and-attributes",[880],{"type":61,"value":881},"5. Discover Object Schemas and Attributes",{"type":56,"tag":63,"props":883,"children":884},{},[885],{"type":61,"value":886},"Understand your workspace structure by listing objects and their attribute definitions.",{"type":56,"tag":63,"props":888,"children":889},{},[890,895,896,902,903],{"type":56,"tag":72,"props":891,"children":892},{},[893],{"type":61,"value":894},"Tools:",{"type":61,"value":78},{"type":56,"tag":117,"props":897,"children":899},{"className":898},[],[900],{"type":61,"value":901},"ATTIO_GET_OBJECT",{"type":61,"value":226},{"type":56,"tag":117,"props":904,"children":906},{"className":905},[],[907],{"type":61,"value":908},"ATTIO_LIST_ATTRIBUTES",{"type":56,"tag":63,"props":910,"children":911},{},[912],{"type":56,"tag":72,"props":913,"children":914},{},[915],{"type":61,"value":175},{"type":56,"tag":177,"props":917,"children":918},{},[919],{"type":56,"tag":63,"props":920,"children":921},{},[922],{"type":61,"value":923},"\"What attributes does the companies object have in Attio?\"",{"type":56,"tag":63,"props":925,"children":926},{},[927],{"type":56,"tag":72,"props":928,"children":929},{},[930],{"type":61,"value":931},"Key parameters for Get Object:",{"type":56,"tag":194,"props":933,"children":934},{},[935],{"type":56,"tag":104,"props":936,"children":937},{},[938,943],{"type":56,"tag":117,"props":939,"children":941},{"className":940},[],[942],{"type":61,"value":717},{"type":61,"value":944}," -- Object slug or UUID",{"type":56,"tag":63,"props":946,"children":947},{},[948],{"type":56,"tag":72,"props":949,"children":950},{},[951],{"type":61,"value":952},"Key parameters for List Attributes:",{"type":56,"tag":194,"props":954,"children":955},{},[956,967],{"type":56,"tag":104,"props":957,"children":958},{},[959,965],{"type":56,"tag":117,"props":960,"children":962},{"className":961},[],[963],{"type":61,"value":964},"target",{"type":61,"value":966}," -- \"objects\" or \"lists\"",{"type":56,"tag":104,"props":968,"children":969},{},[970,976],{"type":56,"tag":117,"props":971,"children":973},{"className":972},[],[974],{"type":61,"value":975},"identifier",{"type":61,"value":977}," -- Object or list ID\u002Fslug",{"type":56,"tag":89,"props":979,"children":980},{},[],{"type":56,"tag":142,"props":982,"children":984},{"id":983},"_6-list-all-records",[985],{"type":61,"value":986},"6. List All Records",{"type":56,"tag":63,"props":988,"children":989},{},[990],{"type":61,"value":991},"Retrieve records from a specific object type with simple pagination, returned in creation order.",{"type":56,"tag":63,"props":993,"children":994},{},[995,999,1000],{"type":56,"tag":72,"props":996,"children":997},{},[998],{"type":61,"value":160},{"type":61,"value":78},{"type":56,"tag":117,"props":1001,"children":1003},{"className":1002},[],[1004],{"type":61,"value":1005},"ATTIO_LIST_RECORDS",{"type":56,"tag":63,"props":1007,"children":1008},{},[1009],{"type":56,"tag":72,"props":1010,"children":1011},{},[1012],{"type":61,"value":175},{"type":56,"tag":177,"props":1014,"children":1015},{},[1016],{"type":56,"tag":63,"props":1017,"children":1018},{},[1019],{"type":61,"value":1020},"\"List the first 100 people records in Attio\"",{"type":56,"tag":63,"props":1022,"children":1023},{},[1024],{"type":56,"tag":72,"props":1025,"children":1026},{},[1027],{"type":61,"value":311},{"type":56,"tag":194,"props":1029,"children":1030},{},[1031,1036],{"type":56,"tag":104,"props":1032,"children":1033},{},[1034],{"type":61,"value":1035},"Object type identifier",{"type":56,"tag":104,"props":1037,"children":1038},{},[1039],{"type":61,"value":1040},"Pagination parameters",{"type":56,"tag":89,"props":1042,"children":1043},{},[],{"type":56,"tag":93,"props":1045,"children":1047},{"id":1046},"known-pitfalls",[1048],{"type":61,"value":1049},"Known Pitfalls",{"type":56,"tag":194,"props":1051,"children":1052},{},[1053,1084,1145,1197,1214,1231,1254],{"type":56,"tag":104,"props":1054,"children":1055},{},[1056,1061,1063,1068,1069,1075,1077,1082],{"type":56,"tag":72,"props":1057,"children":1058},{},[1059],{"type":61,"value":1060},"Timestamp format is critical",{"type":61,"value":1062},": ALL timestamp comparisons (",{"type":56,"tag":117,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":61,"value":610},{"type":61,"value":226},{"type":56,"tag":117,"props":1070,"children":1072},{"className":1071},[],[1073],{"type":61,"value":1074},"updated_at",{"type":61,"value":1076},", custom timestamps) MUST use ISO8601 string format (e.g., ",{"type":56,"tag":117,"props":1078,"children":1080},{"className":1079},[],[1081],{"type":61,"value":647},{"type":61,"value":1083},"). Unix timestamps or numeric values cause \"Invalid timestamp value\" errors.",{"type":56,"tag":104,"props":1085,"children":1086},{},[1087,1092,1094,1099,1101,1106,1107,1113,1114,1120,1122,1127,1129,1135,1137,1143],{"type":56,"tag":72,"props":1088,"children":1089},{},[1090],{"type":61,"value":1091},"Name attributes must be nested",{"type":61,"value":1093},": The ",{"type":56,"tag":117,"props":1095,"children":1097},{"className":1096},[],[1098],{"type":61,"value":457},{"type":61,"value":1100}," attribute has sub-properties (",{"type":56,"tag":117,"props":1102,"children":1104},{"className":1103},[],[1105],{"type":61,"value":481},{"type":61,"value":226},{"type":56,"tag":117,"props":1108,"children":1110},{"className":1109},[],[1111],{"type":61,"value":1112},"last_name",{"type":61,"value":226},{"type":56,"tag":117,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":61,"value":1119},"full_name",{"type":61,"value":1121},") that MUST be nested under ",{"type":56,"tag":117,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":61,"value":457},{"type":61,"value":1128},". Correct: ",{"type":56,"tag":117,"props":1130,"children":1132},{"className":1131},[],[1133],{"type":61,"value":1134},"{\"name\": {\"first_name\": {\"$contains\": \"John\"}}}",{"type":61,"value":1136},". Wrong: ",{"type":56,"tag":117,"props":1138,"children":1140},{"className":1139},[],[1141],{"type":61,"value":1142},"{\"first_name\": {...}}",{"type":61,"value":1144}," -- this fails with \"unknown_filter_attribute_slug\".",{"type":56,"tag":104,"props":1146,"children":1147},{},[1148,1153,1155,1160,1162,1167,1168,1173,1174,1180,1181,1187,1189,1195],{"type":56,"tag":72,"props":1149,"children":1150},{},[1151],{"type":61,"value":1152},"Email operators are limited",{"type":61,"value":1154},": ",{"type":56,"tag":117,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":61,"value":547},{"type":61,"value":1161}," supports ",{"type":56,"tag":117,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":61,"value":342},{"type":61,"value":226},{"type":56,"tag":117,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":61,"value":349},{"type":61,"value":226},{"type":56,"tag":117,"props":1175,"children":1177},{"className":1176},[],[1178],{"type":61,"value":1179},"$starts_with",{"type":61,"value":226},{"type":56,"tag":117,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":61,"value":1186},"$ends_with",{"type":61,"value":1188}," but NOT ",{"type":56,"tag":117,"props":1190,"children":1192},{"className":1191},[],[1193],{"type":61,"value":1194},"$not_empty",{"type":61,"value":1196},".",{"type":56,"tag":104,"props":1198,"children":1199},{},[1200,1205,1207,1213],{"type":56,"tag":72,"props":1201,"children":1202},{},[1203],{"type":61,"value":1204},"Record-reference attributes need path filtering",{"type":61,"value":1206},": For attributes that reference other records (e.g., \"team\", \"company\"), use path-based filtering, not nested syntax. Example: ",{"type":56,"tag":117,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":61,"value":1212},"{\"path\": [[\"companies\", \"team\"], [\"people\", \"name\"]], \"constraints\": {\"first_name\": {\"$eq\": \"John\"}}}",{"type":61,"value":1196},{"type":56,"tag":104,"props":1215,"children":1216},{},[1217,1222,1224,1229],{"type":56,"tag":72,"props":1218,"children":1219},{},[1220],{"type":61,"value":1221},"\"lists\" is not an object type",{"type":61,"value":1223},": Do not use \"lists\" as an ",{"type":56,"tag":117,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":61,"value":717},{"type":61,"value":1230},". Use list-specific actions for list operations.",{"type":56,"tag":104,"props":1232,"children":1233},{},[1234,1239,1240,1245,1247,1252],{"type":56,"tag":72,"props":1235,"children":1236},{},[1237],{"type":61,"value":1238},"Search is eventually consistent",{"type":61,"value":1154},{"type":56,"tag":117,"props":1241,"children":1243},{"className":1242},[],[1244],{"type":61,"value":167},{"type":61,"value":1246}," returns eventually consistent results. For guaranteed up-to-date results, use ",{"type":56,"tag":117,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":61,"value":288},{"type":61,"value":1253}," instead.",{"type":56,"tag":104,"props":1255,"children":1256},{},[1257,1262,1264,1269],{"type":56,"tag":72,"props":1258,"children":1259},{},[1260],{"type":61,"value":1261},"Attribute slugs vary by workspace",{"type":61,"value":1263},": System attributes (e.g., \"email_addresses\", \"name\") are consistent, but custom attributes vary. Use ",{"type":56,"tag":117,"props":1265,"children":1267},{"className":1266},[],[1268],{"type":61,"value":908},{"type":61,"value":1270}," to discover valid slugs for your workspace.",{"type":56,"tag":89,"props":1272,"children":1273},{},[],{"type":56,"tag":93,"props":1275,"children":1277},{"id":1276},"quick-reference",[1278],{"type":61,"value":1279},"Quick Reference",{"type":56,"tag":1281,"props":1282,"children":1283},"table",{},[1284,1308],{"type":56,"tag":1285,"props":1286,"children":1287},"thead",{},[1288],{"type":56,"tag":1289,"props":1290,"children":1291},"tr",{},[1292,1298,1303],{"type":56,"tag":1293,"props":1294,"children":1295},"th",{},[1296],{"type":61,"value":1297},"Action",{"type":56,"tag":1293,"props":1299,"children":1300},{},[1301],{"type":61,"value":1302},"Tool Slug",{"type":56,"tag":1293,"props":1304,"children":1305},{},[1306],{"type":61,"value":1307},"Required Params",{"type":56,"tag":1309,"props":1310,"children":1311},"tbody",{},[1312,1349,1373,1397,1418,1442,1472],{"type":56,"tag":1289,"props":1313,"children":1314},{},[1315,1321,1329],{"type":56,"tag":1316,"props":1317,"children":1318},"td",{},[1319],{"type":61,"value":1320},"Fuzzy search records",{"type":56,"tag":1316,"props":1322,"children":1323},{},[1324],{"type":56,"tag":117,"props":1325,"children":1327},{"className":1326},[],[1328],{"type":61,"value":167},{"type":56,"tag":1316,"props":1330,"children":1331},{},[1332,1337,1338,1343,1344],{"type":56,"tag":117,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":61,"value":205},{"type":61,"value":226},{"type":56,"tag":117,"props":1339,"children":1341},{"className":1340},[],[1342],{"type":61,"value":216},{"type":61,"value":226},{"type":56,"tag":117,"props":1345,"children":1347},{"className":1346},[],[1348],{"type":61,"value":250},{"type":56,"tag":1289,"props":1350,"children":1351},{},[1352,1357,1365],{"type":56,"tag":1316,"props":1353,"children":1354},{},[1355],{"type":61,"value":1356},"Query with filters",{"type":56,"tag":1316,"props":1358,"children":1359},{},[1360],{"type":56,"tag":117,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":61,"value":288},{"type":56,"tag":1316,"props":1366,"children":1367},{},[1368],{"type":56,"tag":117,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":61,"value":323},{"type":56,"tag":1289,"props":1374,"children":1375},{},[1376,1381,1389],{"type":56,"tag":1316,"props":1377,"children":1378},{},[1379],{"type":61,"value":1380},"Find record by ID\u002Fattributes",{"type":56,"tag":1316,"props":1382,"children":1383},{},[1384],{"type":56,"tag":117,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":61,"value":683},{"type":56,"tag":1316,"props":1390,"children":1391},{},[1392],{"type":56,"tag":117,"props":1393,"children":1395},{"className":1394},[],[1396],{"type":61,"value":717},{"type":56,"tag":1289,"props":1398,"children":1399},{},[1400,1405,1413],{"type":56,"tag":1316,"props":1401,"children":1402},{},[1403],{"type":61,"value":1404},"List notes",{"type":56,"tag":1316,"props":1406,"children":1407},{},[1408],{"type":56,"tag":117,"props":1409,"children":1411},{"className":1410},[],[1412],{"type":61,"value":795},{"type":56,"tag":1316,"props":1414,"children":1415},{},[1416],{"type":61,"value":1417},"None (optional filters)",{"type":56,"tag":1289,"props":1419,"children":1420},{},[1421,1426,1434],{"type":56,"tag":1316,"props":1422,"children":1423},{},[1424],{"type":61,"value":1425},"Get object schema",{"type":56,"tag":1316,"props":1427,"children":1428},{},[1429],{"type":56,"tag":117,"props":1430,"children":1432},{"className":1431},[],[1433],{"type":61,"value":901},{"type":56,"tag":1316,"props":1435,"children":1436},{},[1437],{"type":56,"tag":117,"props":1438,"children":1440},{"className":1439},[],[1441],{"type":61,"value":717},{"type":56,"tag":1289,"props":1443,"children":1444},{},[1445,1450,1458],{"type":56,"tag":1316,"props":1446,"children":1447},{},[1448],{"type":61,"value":1449},"List attributes",{"type":56,"tag":1316,"props":1451,"children":1452},{},[1453],{"type":56,"tag":117,"props":1454,"children":1456},{"className":1455},[],[1457],{"type":61,"value":908},{"type":56,"tag":1316,"props":1459,"children":1460},{},[1461,1466,1467],{"type":56,"tag":117,"props":1462,"children":1464},{"className":1463},[],[1465],{"type":61,"value":964},{"type":61,"value":226},{"type":56,"tag":117,"props":1468,"children":1470},{"className":1469},[],[1471],{"type":61,"value":975},{"type":56,"tag":1289,"props":1473,"children":1474},{},[1475,1480,1488],{"type":56,"tag":1316,"props":1476,"children":1477},{},[1478],{"type":61,"value":1479},"List records",{"type":56,"tag":1316,"props":1481,"children":1482},{},[1483],{"type":56,"tag":117,"props":1484,"children":1486},{"className":1485},[],[1487],{"type":61,"value":1005},{"type":56,"tag":1316,"props":1489,"children":1490},{},[1491],{"type":61,"value":1492},"Object type",{"type":56,"tag":89,"props":1494,"children":1495},{},[],{"type":56,"tag":63,"props":1497,"children":1498},{},[1499],{"type":56,"tag":1500,"props":1501,"children":1502},"em",{},[1503,1505],{"type":61,"value":1504},"Powered by ",{"type":56,"tag":80,"props":1506,"children":1509},{"href":1507,"rel":1508},"https:\u002F\u002Fcomposio.dev",[84],[1510],{"type":61,"value":10},{"type":56,"tag":1512,"props":1513,"children":1514},"style",{},[1515],{"type":61,"value":1516},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1518,"total":1601},[1519,1534,1550,1559,1569,1581,1590],{"slug":1520,"name":1521,"fn":1522,"description":1523,"org":1524,"tags":1525,"stars":22,"repoUrl":23,"updatedAt":1533},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1526,1527,1528,1530],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1529,"slug":37,"type":15},"MCP",{"name":1531,"slug":1532,"type":15},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1535,"name":1536,"fn":1537,"description":1538,"org":1539,"tags":1540,"stars":22,"repoUrl":23,"updatedAt":1549},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1541,1542,1545,1546],{"name":17,"slug":18,"type":15},{"name":1543,"slug":1544,"type":15},"Communications","communications",{"name":1529,"slug":37,"type":15},{"name":1547,"slug":1548,"type":15},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1551,"name":1551,"fn":1552,"description":1553,"org":1554,"tags":1555,"stars":22,"repoUrl":23,"updatedAt":1558},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1556,1557],{"name":17,"slug":18,"type":15},{"name":1529,"slug":37,"type":15},"2026-07-12T08:09:55.453088",{"slug":1560,"name":1560,"fn":1561,"description":1562,"org":1563,"tags":1564,"stars":22,"repoUrl":23,"updatedAt":1568},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1565,1566,1567],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1529,"slug":37,"type":15},"2026-07-15T05:45:16.470309",{"slug":1570,"name":1570,"fn":1571,"description":1572,"org":1573,"tags":1574,"stars":22,"repoUrl":23,"updatedAt":1580},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1575,1576,1577],{"name":17,"slug":18,"type":15},{"name":1529,"slug":37,"type":15},{"name":1578,"slug":1579,"type":15},"Security","security","2026-07-15T05:56:20.013366",{"slug":1582,"name":1582,"fn":1583,"description":1584,"org":1585,"tags":1586,"stars":22,"repoUrl":23,"updatedAt":1589},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1587,1588],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},"2026-07-15T05:54:50.762889",{"slug":1591,"name":1591,"fn":1592,"description":1593,"org":1594,"tags":1595,"stars":22,"repoUrl":23,"updatedAt":1600},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1596,1597,1598,1599],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1529,"slug":37,"type":15},"2026-07-15T05:48:43.429136",860,{"items":1603,"total":1707},[1604,1611,1618,1623,1629,1635,1640,1647,1661,1674,1687,1697],{"slug":1520,"name":1521,"fn":1522,"description":1523,"org":1605,"tags":1606,"stars":22,"repoUrl":23,"updatedAt":1533},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1607,1608,1609,1610],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1529,"slug":37,"type":15},{"name":1531,"slug":1532,"type":15},{"slug":1535,"name":1536,"fn":1537,"description":1538,"org":1612,"tags":1613,"stars":22,"repoUrl":23,"updatedAt":1549},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1614,1615,1616,1617],{"name":17,"slug":18,"type":15},{"name":1543,"slug":1544,"type":15},{"name":1529,"slug":37,"type":15},{"name":1547,"slug":1548,"type":15},{"slug":1551,"name":1551,"fn":1552,"description":1553,"org":1619,"tags":1620,"stars":22,"repoUrl":23,"updatedAt":1558},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1621,1622],{"name":17,"slug":18,"type":15},{"name":1529,"slug":37,"type":15},{"slug":1560,"name":1560,"fn":1561,"description":1562,"org":1624,"tags":1625,"stars":22,"repoUrl":23,"updatedAt":1568},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1626,1627,1628],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1529,"slug":37,"type":15},{"slug":1570,"name":1570,"fn":1571,"description":1572,"org":1630,"tags":1631,"stars":22,"repoUrl":23,"updatedAt":1580},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1632,1633,1634],{"name":17,"slug":18,"type":15},{"name":1529,"slug":37,"type":15},{"name":1578,"slug":1579,"type":15},{"slug":1582,"name":1582,"fn":1583,"description":1584,"org":1636,"tags":1637,"stars":22,"repoUrl":23,"updatedAt":1589},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1638,1639],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"slug":1591,"name":1591,"fn":1592,"description":1593,"org":1641,"tags":1642,"stars":22,"repoUrl":23,"updatedAt":1600},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1643,1644,1645,1646],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1529,"slug":37,"type":15},{"slug":1648,"name":1648,"fn":1649,"description":1650,"org":1651,"tags":1652,"stars":22,"repoUrl":23,"updatedAt":1660},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1653,1654,1657],{"name":17,"slug":18,"type":15},{"name":1655,"slug":1656,"type":15},"Documents","documents",{"name":1658,"slug":1659,"type":15},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1662,"name":1662,"fn":1663,"description":1664,"org":1665,"tags":1666,"stars":22,"repoUrl":23,"updatedAt":1673},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1667,1668,1669,1670],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1529,"slug":37,"type":15},{"name":1671,"slug":1672,"type":15},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1675,"name":1675,"fn":1676,"description":1677,"org":1678,"tags":1679,"stars":22,"repoUrl":23,"updatedAt":1686},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1680,1681,1682,1683],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1684,"slug":1685,"type":15},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1688,"name":1688,"fn":1689,"description":1690,"org":1691,"tags":1692,"stars":22,"repoUrl":23,"updatedAt":1696},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1693,1694,1695],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1529,"slug":37,"type":15},"2026-07-15T05:47:51.742515",{"slug":1698,"name":1698,"fn":1699,"description":1700,"org":1701,"tags":1702,"stars":22,"repoUrl":23,"updatedAt":1706},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1703,1704,1705],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1529,"slug":37,"type":15},"2026-07-15T05:45:05.303254",863]