[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-googleadmin-automation":3,"mdc-hmzj0l-key":49,"related-org-composio-googleadmin-automation":697,"related-repo-composio-googleadmin-automation":841},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":44,"sourceUrl":47,"mdContent":48},"googleadmin-automation","google_admin-automation","automate Google Admin tasks","Automate Google Admin tasks via Rube MCP (Composio): user management, org units, groups, and domain administration. Always search tools first for current schemas.",{"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,18,21],{"name":15,"slug":16,"type":17},"Operations","operations","tag",{"name":19,"slug":20,"type":17},"Automation","automation",{"name":22,"slug":23,"type":17},"MCP","mcp",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:46:01.001444",null,7603,[30,31,32,20,33,34,35,9,36,37,38,23,39,40,41,42,43],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":25,"stars":24,"forks":28,"topics":45,"description":46},[30,31,32,20,33,34,35,9,36,37,38,23,39,40,41,42,43],"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\u002Fgoogle_admin-automation","---\nname: google_admin-automation\ndescription: \"Automate Google Admin tasks via Rube MCP (Composio): user management, org units, groups, and domain administration. Always search tools first for current schemas.\"\nrequires:\n  mcp: [rube]\n---\n\n# Google Admin Automation via Rube MCP\n\nAutomate Google Admin operations through Composio's Google Admin toolkit via Rube MCP.\n\n**Toolkit docs**: [composio.dev\u002Ftoolkits\u002Fgoogle_admin](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fgoogle_admin)\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Google Admin connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `google_admin`\n- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas\n\n## Setup\n\n**Get Rube MCP**: Add `https:\u002F\u002Frube.app\u002Fmcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.\n\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `google_admin`\n3. If connection is not ACTIVE, follow the returned auth link to complete setup\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Tool Discovery\n\nAlways discover available tools before executing workflows:\n\n```\nRUBE_SEARCH_TOOLS: queries=[{\"use_case\": \"user management, org units, groups, and domain administration\", \"known_fields\": \"\"}]\n```\n\nThis returns:\n- Available tool slugs for Google Admin\n- Recommended execution plan steps\n- Known pitfalls and edge cases\n- Input schemas for each tool\n\n## Core Workflows\n\n### 1. Discover Available Google Admin Tools\n\n```\nRUBE_SEARCH_TOOLS:\n  queries:\n    - use_case: \"list all available Google Admin tools and capabilities\"\n```\n\nReview the returned tools, their descriptions, and input schemas before proceeding.\n\n### 2. Execute Google Admin Operations\n\nAfter discovering tools, execute them via:\n\n```\nRUBE_MULTI_EXECUTE_TOOL:\n  tools:\n    - tool_slug: \"\u003Cdiscovered_tool_slug>\"\n      arguments: {\u003Cschema-compliant arguments>}\n  memory: {}\n  sync_response_to_workbench: false\n```\n\n### 3. Multi-Step Workflows\n\nFor complex workflows involving multiple Google Admin operations:\n\n1. Search for all relevant tools: `RUBE_SEARCH_TOOLS` with specific use case\n2. Execute prerequisite steps first (e.g., fetch before update)\n3. Pass data between steps using tool responses\n4. Use `RUBE_REMOTE_WORKBENCH` for bulk operations or data processing\n\n## Common Patterns\n\n### Search Before Action\nAlways search for existing resources before creating new ones to avoid duplicates.\n\n### Pagination\nMany list operations support pagination. Check responses for `next_cursor` or `page_token` and continue fetching until exhausted.\n\n### Error Handling\n- Check tool responses for errors before proceeding\n- If a tool fails, verify the connection is still ACTIVE\n- Re-authenticate via `RUBE_MANAGE_CONNECTIONS` if connection expired\n\n### Batch Operations\nFor bulk operations, use `RUBE_REMOTE_WORKBENCH` with `run_composio_tool()` in a loop with `ThreadPoolExecutor` for parallel execution.\n\n## Known Pitfalls\n\n- **Always search tools first**: Tool schemas and available operations may change. Never hardcode tool slugs without first discovering them via `RUBE_SEARCH_TOOLS`.\n- **Check connection status**: Ensure the Google Admin connection is ACTIVE before executing any tools. Expired OAuth tokens require re-authentication.\n- **Respect rate limits**: If you receive rate limit errors, reduce request frequency and implement backoff.\n- **Validate schemas**: Always pass strictly schema-compliant arguments. Use `RUBE_GET_TOOL_SCHEMAS` to load full input schemas when `schemaRef` is returned instead of `input_schema`.\n\n## Quick Reference\n\n| Operation | Approach |\n|-----------|----------|\n| Find tools | `RUBE_SEARCH_TOOLS` with Google Admin-specific use case |\n| Connect | `RUBE_MANAGE_CONNECTIONS` with toolkit `google_admin` |\n| Execute | `RUBE_MULTI_EXECUTE_TOOL` with discovered tool slugs |\n| Bulk ops | `RUBE_REMOTE_WORKBENCH` with `run_composio_tool()` |\n| Full schema | `RUBE_GET_TOOL_SCHEMAS` for tools with `schemaRef` |\n\n> **Toolkit docs**: [composio.dev\u002Ftoolkits\u002Fgoogle_admin](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fgoogle_admin)\n",{"data":50,"body":53},{"name":5,"description":7,"requires":51},{"mcp":52},[40],{"type":54,"children":55},"root",[56,65,71,91,98,141,147,165,207,213,218,230,235,258,264,271,280,285,291,296,305,311,316,354,360,366,371,377,398,404,429,435,463,469,542,548,680],{"type":57,"tag":58,"props":59,"children":61},"element","h1",{"id":60},"google-admin-automation-via-rube-mcp",[62],{"type":63,"value":64},"text","Google Admin Automation via Rube MCP",{"type":57,"tag":66,"props":67,"children":68},"p",{},[69],{"type":63,"value":70},"Automate Google Admin operations through Composio's Google Admin toolkit via Rube MCP.",{"type":57,"tag":66,"props":72,"children":73},{},[74,80,82],{"type":57,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":63,"value":79},"Toolkit docs",{"type":63,"value":81},": ",{"type":57,"tag":83,"props":84,"children":88},"a",{"href":85,"rel":86},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fgoogle_admin",[87],"nofollow",[89],{"type":63,"value":90},"composio.dev\u002Ftoolkits\u002Fgoogle_admin",{"type":57,"tag":92,"props":93,"children":95},"h2",{"id":94},"prerequisites",[96],{"type":63,"value":97},"Prerequisites",{"type":57,"tag":99,"props":100,"children":101},"ul",{},[102,108,128],{"type":57,"tag":103,"props":104,"children":105},"li",{},[106],{"type":63,"value":107},"Rube MCP must be connected (RUBE_SEARCH_TOOLS available)",{"type":57,"tag":103,"props":109,"children":110},{},[111,113,120,122],{"type":63,"value":112},"Active Google Admin connection via ",{"type":57,"tag":114,"props":115,"children":117},"code",{"className":116},[],[118],{"type":63,"value":119},"RUBE_MANAGE_CONNECTIONS",{"type":63,"value":121}," with toolkit ",{"type":57,"tag":114,"props":123,"children":125},{"className":124},[],[126],{"type":63,"value":127},"google_admin",{"type":57,"tag":103,"props":129,"children":130},{},[131,133,139],{"type":63,"value":132},"Always call ",{"type":57,"tag":114,"props":134,"children":136},{"className":135},[],[137],{"type":63,"value":138},"RUBE_SEARCH_TOOLS",{"type":63,"value":140}," first to get current tool schemas",{"type":57,"tag":92,"props":142,"children":144},{"id":143},"setup",[145],{"type":63,"value":146},"Setup",{"type":57,"tag":66,"props":148,"children":149},{},[150,155,157,163],{"type":57,"tag":75,"props":151,"children":152},{},[153],{"type":63,"value":154},"Get Rube MCP",{"type":63,"value":156},": Add ",{"type":57,"tag":114,"props":158,"children":160},{"className":159},[],[161],{"type":63,"value":162},"https:\u002F\u002Frube.app\u002Fmcp",{"type":63,"value":164}," as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.",{"type":57,"tag":166,"props":167,"children":168},"ol",{},[169,181,197,202],{"type":57,"tag":103,"props":170,"children":171},{},[172,174,179],{"type":63,"value":173},"Verify Rube MCP is available by confirming ",{"type":57,"tag":114,"props":175,"children":177},{"className":176},[],[178],{"type":63,"value":138},{"type":63,"value":180}," responds",{"type":57,"tag":103,"props":182,"children":183},{},[184,186,191,192],{"type":63,"value":185},"Call ",{"type":57,"tag":114,"props":187,"children":189},{"className":188},[],[190],{"type":63,"value":119},{"type":63,"value":121},{"type":57,"tag":114,"props":193,"children":195},{"className":194},[],[196],{"type":63,"value":127},{"type":57,"tag":103,"props":198,"children":199},{},[200],{"type":63,"value":201},"If connection is not ACTIVE, follow the returned auth link to complete setup",{"type":57,"tag":103,"props":203,"children":204},{},[205],{"type":63,"value":206},"Confirm connection status shows ACTIVE before running any workflows",{"type":57,"tag":92,"props":208,"children":210},{"id":209},"tool-discovery",[211],{"type":63,"value":212},"Tool Discovery",{"type":57,"tag":66,"props":214,"children":215},{},[216],{"type":63,"value":217},"Always discover available tools before executing workflows:",{"type":57,"tag":219,"props":220,"children":224},"pre",{"className":221,"code":223,"language":63},[222],"language-text","RUBE_SEARCH_TOOLS: queries=[{\"use_case\": \"user management, org units, groups, and domain administration\", \"known_fields\": \"\"}]\n",[225],{"type":57,"tag":114,"props":226,"children":228},{"__ignoreMap":227},"",[229],{"type":63,"value":223},{"type":57,"tag":66,"props":231,"children":232},{},[233],{"type":63,"value":234},"This returns:",{"type":57,"tag":99,"props":236,"children":237},{},[238,243,248,253],{"type":57,"tag":103,"props":239,"children":240},{},[241],{"type":63,"value":242},"Available tool slugs for Google Admin",{"type":57,"tag":103,"props":244,"children":245},{},[246],{"type":63,"value":247},"Recommended execution plan steps",{"type":57,"tag":103,"props":249,"children":250},{},[251],{"type":63,"value":252},"Known pitfalls and edge cases",{"type":57,"tag":103,"props":254,"children":255},{},[256],{"type":63,"value":257},"Input schemas for each tool",{"type":57,"tag":92,"props":259,"children":261},{"id":260},"core-workflows",[262],{"type":63,"value":263},"Core Workflows",{"type":57,"tag":265,"props":266,"children":268},"h3",{"id":267},"_1-discover-available-google-admin-tools",[269],{"type":63,"value":270},"1. Discover Available Google Admin Tools",{"type":57,"tag":219,"props":272,"children":275},{"className":273,"code":274,"language":63},[222],"RUBE_SEARCH_TOOLS:\n  queries:\n    - use_case: \"list all available Google Admin tools and capabilities\"\n",[276],{"type":57,"tag":114,"props":277,"children":278},{"__ignoreMap":227},[279],{"type":63,"value":274},{"type":57,"tag":66,"props":281,"children":282},{},[283],{"type":63,"value":284},"Review the returned tools, their descriptions, and input schemas before proceeding.",{"type":57,"tag":265,"props":286,"children":288},{"id":287},"_2-execute-google-admin-operations",[289],{"type":63,"value":290},"2. Execute Google Admin Operations",{"type":57,"tag":66,"props":292,"children":293},{},[294],{"type":63,"value":295},"After discovering tools, execute them via:",{"type":57,"tag":219,"props":297,"children":300},{"className":298,"code":299,"language":63},[222],"RUBE_MULTI_EXECUTE_TOOL:\n  tools:\n    - tool_slug: \"\u003Cdiscovered_tool_slug>\"\n      arguments: {\u003Cschema-compliant arguments>}\n  memory: {}\n  sync_response_to_workbench: false\n",[301],{"type":57,"tag":114,"props":302,"children":303},{"__ignoreMap":227},[304],{"type":63,"value":299},{"type":57,"tag":265,"props":306,"children":308},{"id":307},"_3-multi-step-workflows",[309],{"type":63,"value":310},"3. Multi-Step Workflows",{"type":57,"tag":66,"props":312,"children":313},{},[314],{"type":63,"value":315},"For complex workflows involving multiple Google Admin operations:",{"type":57,"tag":166,"props":317,"children":318},{},[319,331,336,341],{"type":57,"tag":103,"props":320,"children":321},{},[322,324,329],{"type":63,"value":323},"Search for all relevant tools: ",{"type":57,"tag":114,"props":325,"children":327},{"className":326},[],[328],{"type":63,"value":138},{"type":63,"value":330}," with specific use case",{"type":57,"tag":103,"props":332,"children":333},{},[334],{"type":63,"value":335},"Execute prerequisite steps first (e.g., fetch before update)",{"type":57,"tag":103,"props":337,"children":338},{},[339],{"type":63,"value":340},"Pass data between steps using tool responses",{"type":57,"tag":103,"props":342,"children":343},{},[344,346,352],{"type":63,"value":345},"Use ",{"type":57,"tag":114,"props":347,"children":349},{"className":348},[],[350],{"type":63,"value":351},"RUBE_REMOTE_WORKBENCH",{"type":63,"value":353}," for bulk operations or data processing",{"type":57,"tag":92,"props":355,"children":357},{"id":356},"common-patterns",[358],{"type":63,"value":359},"Common Patterns",{"type":57,"tag":265,"props":361,"children":363},{"id":362},"search-before-action",[364],{"type":63,"value":365},"Search Before Action",{"type":57,"tag":66,"props":367,"children":368},{},[369],{"type":63,"value":370},"Always search for existing resources before creating new ones to avoid duplicates.",{"type":57,"tag":265,"props":372,"children":374},{"id":373},"pagination",[375],{"type":63,"value":376},"Pagination",{"type":57,"tag":66,"props":378,"children":379},{},[380,382,388,390,396],{"type":63,"value":381},"Many list operations support pagination. Check responses for ",{"type":57,"tag":114,"props":383,"children":385},{"className":384},[],[386],{"type":63,"value":387},"next_cursor",{"type":63,"value":389}," or ",{"type":57,"tag":114,"props":391,"children":393},{"className":392},[],[394],{"type":63,"value":395},"page_token",{"type":63,"value":397}," and continue fetching until exhausted.",{"type":57,"tag":265,"props":399,"children":401},{"id":400},"error-handling",[402],{"type":63,"value":403},"Error Handling",{"type":57,"tag":99,"props":405,"children":406},{},[407,412,417],{"type":57,"tag":103,"props":408,"children":409},{},[410],{"type":63,"value":411},"Check tool responses for errors before proceeding",{"type":57,"tag":103,"props":413,"children":414},{},[415],{"type":63,"value":416},"If a tool fails, verify the connection is still ACTIVE",{"type":57,"tag":103,"props":418,"children":419},{},[420,422,427],{"type":63,"value":421},"Re-authenticate via ",{"type":57,"tag":114,"props":423,"children":425},{"className":424},[],[426],{"type":63,"value":119},{"type":63,"value":428}," if connection expired",{"type":57,"tag":265,"props":430,"children":432},{"id":431},"batch-operations",[433],{"type":63,"value":434},"Batch Operations",{"type":57,"tag":66,"props":436,"children":437},{},[438,440,445,447,453,455,461],{"type":63,"value":439},"For bulk operations, use ",{"type":57,"tag":114,"props":441,"children":443},{"className":442},[],[444],{"type":63,"value":351},{"type":63,"value":446}," with ",{"type":57,"tag":114,"props":448,"children":450},{"className":449},[],[451],{"type":63,"value":452},"run_composio_tool()",{"type":63,"value":454}," in a loop with ",{"type":57,"tag":114,"props":456,"children":458},{"className":457},[],[459],{"type":63,"value":460},"ThreadPoolExecutor",{"type":63,"value":462}," for parallel execution.",{"type":57,"tag":92,"props":464,"children":466},{"id":465},"known-pitfalls",[467],{"type":63,"value":468},"Known Pitfalls",{"type":57,"tag":99,"props":470,"children":471},{},[472,489,499,509],{"type":57,"tag":103,"props":473,"children":474},{},[475,480,482,487],{"type":57,"tag":75,"props":476,"children":477},{},[478],{"type":63,"value":479},"Always search tools first",{"type":63,"value":481},": Tool schemas and available operations may change. Never hardcode tool slugs without first discovering them via ",{"type":57,"tag":114,"props":483,"children":485},{"className":484},[],[486],{"type":63,"value":138},{"type":63,"value":488},".",{"type":57,"tag":103,"props":490,"children":491},{},[492,497],{"type":57,"tag":75,"props":493,"children":494},{},[495],{"type":63,"value":496},"Check connection status",{"type":63,"value":498},": Ensure the Google Admin connection is ACTIVE before executing any tools. Expired OAuth tokens require re-authentication.",{"type":57,"tag":103,"props":500,"children":501},{},[502,507],{"type":57,"tag":75,"props":503,"children":504},{},[505],{"type":63,"value":506},"Respect rate limits",{"type":63,"value":508},": If you receive rate limit errors, reduce request frequency and implement backoff.",{"type":57,"tag":103,"props":510,"children":511},{},[512,517,519,525,527,533,535,541],{"type":57,"tag":75,"props":513,"children":514},{},[515],{"type":63,"value":516},"Validate schemas",{"type":63,"value":518},": Always pass strictly schema-compliant arguments. Use ",{"type":57,"tag":114,"props":520,"children":522},{"className":521},[],[523],{"type":63,"value":524},"RUBE_GET_TOOL_SCHEMAS",{"type":63,"value":526}," to load full input schemas when ",{"type":57,"tag":114,"props":528,"children":530},{"className":529},[],[531],{"type":63,"value":532},"schemaRef",{"type":63,"value":534}," is returned instead of ",{"type":57,"tag":114,"props":536,"children":538},{"className":537},[],[539],{"type":63,"value":540},"input_schema",{"type":63,"value":488},{"type":57,"tag":92,"props":543,"children":545},{"id":544},"quick-reference",[546],{"type":63,"value":547},"Quick Reference",{"type":57,"tag":549,"props":550,"children":551},"table",{},[552,571],{"type":57,"tag":553,"props":554,"children":555},"thead",{},[556],{"type":57,"tag":557,"props":558,"children":559},"tr",{},[560,566],{"type":57,"tag":561,"props":562,"children":563},"th",{},[564],{"type":63,"value":565},"Operation",{"type":57,"tag":561,"props":567,"children":568},{},[569],{"type":63,"value":570},"Approach",{"type":57,"tag":572,"props":573,"children":574},"tbody",{},[575,594,616,635,657],{"type":57,"tag":557,"props":576,"children":577},{},[578,584],{"type":57,"tag":579,"props":580,"children":581},"td",{},[582],{"type":63,"value":583},"Find tools",{"type":57,"tag":579,"props":585,"children":586},{},[587,592],{"type":57,"tag":114,"props":588,"children":590},{"className":589},[],[591],{"type":63,"value":138},{"type":63,"value":593}," with Google Admin-specific use case",{"type":57,"tag":557,"props":595,"children":596},{},[597,602],{"type":57,"tag":579,"props":598,"children":599},{},[600],{"type":63,"value":601},"Connect",{"type":57,"tag":579,"props":603,"children":604},{},[605,610,611],{"type":57,"tag":114,"props":606,"children":608},{"className":607},[],[609],{"type":63,"value":119},{"type":63,"value":121},{"type":57,"tag":114,"props":612,"children":614},{"className":613},[],[615],{"type":63,"value":127},{"type":57,"tag":557,"props":617,"children":618},{},[619,624],{"type":57,"tag":579,"props":620,"children":621},{},[622],{"type":63,"value":623},"Execute",{"type":57,"tag":579,"props":625,"children":626},{},[627,633],{"type":57,"tag":114,"props":628,"children":630},{"className":629},[],[631],{"type":63,"value":632},"RUBE_MULTI_EXECUTE_TOOL",{"type":63,"value":634}," with discovered tool slugs",{"type":57,"tag":557,"props":636,"children":637},{},[638,643],{"type":57,"tag":579,"props":639,"children":640},{},[641],{"type":63,"value":642},"Bulk ops",{"type":57,"tag":579,"props":644,"children":645},{},[646,651,652],{"type":57,"tag":114,"props":647,"children":649},{"className":648},[],[650],{"type":63,"value":351},{"type":63,"value":446},{"type":57,"tag":114,"props":653,"children":655},{"className":654},[],[656],{"type":63,"value":452},{"type":57,"tag":557,"props":658,"children":659},{},[660,665],{"type":57,"tag":579,"props":661,"children":662},{},[663],{"type":63,"value":664},"Full schema",{"type":57,"tag":579,"props":666,"children":667},{},[668,673,675],{"type":57,"tag":114,"props":669,"children":671},{"className":670},[],[672],{"type":63,"value":524},{"type":63,"value":674}," for tools with ",{"type":57,"tag":114,"props":676,"children":678},{"className":677},[],[679],{"type":63,"value":532},{"type":57,"tag":681,"props":682,"children":683},"blockquote",{},[684],{"type":57,"tag":66,"props":685,"children":686},{},[687,691,692],{"type":57,"tag":75,"props":688,"children":689},{},[690],{"type":63,"value":79},{"type":63,"value":81},{"type":57,"tag":83,"props":693,"children":695},{"href":85,"rel":694},[87],[696],{"type":63,"value":90},{"items":698,"total":840},[699,713,729,738,748,760,769,782,796,807,820,830],{"slug":700,"name":701,"fn":702,"description":703,"org":704,"tags":705,"stars":24,"repoUrl":25,"updatedAt":712},"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},[706,707,708,709],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"name":710,"slug":711,"type":17},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":714,"name":715,"fn":716,"description":717,"org":718,"tags":719,"stars":24,"repoUrl":25,"updatedAt":728},"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},[720,721,724,725],{"name":19,"slug":20,"type":17},{"name":722,"slug":723,"type":17},"Communications","communications",{"name":22,"slug":23,"type":17},{"name":726,"slug":727,"type":17},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":730,"name":730,"fn":731,"description":732,"org":733,"tags":734,"stars":24,"repoUrl":25,"updatedAt":737},"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},[735,736],{"name":19,"slug":20,"type":17},{"name":22,"slug":23,"type":17},"2026-07-12T08:09:55.453088",{"slug":739,"name":739,"fn":740,"description":741,"org":742,"tags":743,"stars":24,"repoUrl":25,"updatedAt":747},"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},[744,745,746],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},"2026-07-15T05:45:16.470309",{"slug":749,"name":749,"fn":750,"description":751,"org":752,"tags":753,"stars":24,"repoUrl":25,"updatedAt":759},"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},[754,755,756],{"name":19,"slug":20,"type":17},{"name":22,"slug":23,"type":17},{"name":757,"slug":758,"type":17},"Security","security","2026-07-15T05:56:20.013366",{"slug":761,"name":761,"fn":762,"description":763,"org":764,"tags":765,"stars":24,"repoUrl":25,"updatedAt":768},"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},[766,767],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},"2026-07-15T05:54:50.762889",{"slug":770,"name":770,"fn":771,"description":772,"org":773,"tags":774,"stars":24,"repoUrl":25,"updatedAt":781},"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},[775,776,777,780],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":778,"slug":779,"type":17},"CRM","crm",{"name":22,"slug":23,"type":17},"2026-07-15T05:48:43.429136",{"slug":783,"name":783,"fn":784,"description":785,"org":786,"tags":787,"stars":24,"repoUrl":25,"updatedAt":795},"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},[788,789,792],{"name":19,"slug":20,"type":17},{"name":790,"slug":791,"type":17},"Documents","documents",{"name":793,"slug":794,"type":17},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":797,"name":797,"fn":798,"description":799,"org":800,"tags":801,"stars":24,"repoUrl":25,"updatedAt":806},"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},[802,803,804,805],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"name":15,"slug":16,"type":17},"2026-07-15T05:58:48.059284",{"slug":808,"name":808,"fn":809,"description":810,"org":811,"tags":812,"stars":24,"repoUrl":25,"updatedAt":819},"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},[813,814,815,816],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":778,"slug":779,"type":17},{"name":817,"slug":818,"type":17},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":821,"name":821,"fn":822,"description":823,"org":824,"tags":825,"stars":24,"repoUrl":25,"updatedAt":829},"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},[826,827,828],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},"2026-07-15T05:47:51.742515",{"slug":831,"name":831,"fn":832,"description":833,"org":834,"tags":835,"stars":24,"repoUrl":25,"updatedAt":839},"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},[836,837,838],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},"2026-07-15T05:45:05.303254",863,{"items":842,"total":886},[843,850,857,862,868,874,879],{"slug":700,"name":701,"fn":702,"description":703,"org":844,"tags":845,"stars":24,"repoUrl":25,"updatedAt":712},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[846,847,848,849],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"name":710,"slug":711,"type":17},{"slug":714,"name":715,"fn":716,"description":717,"org":851,"tags":852,"stars":24,"repoUrl":25,"updatedAt":728},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[853,854,855,856],{"name":19,"slug":20,"type":17},{"name":722,"slug":723,"type":17},{"name":22,"slug":23,"type":17},{"name":726,"slug":727,"type":17},{"slug":730,"name":730,"fn":731,"description":732,"org":858,"tags":859,"stars":24,"repoUrl":25,"updatedAt":737},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[860,861],{"name":19,"slug":20,"type":17},{"name":22,"slug":23,"type":17},{"slug":739,"name":739,"fn":740,"description":741,"org":863,"tags":864,"stars":24,"repoUrl":25,"updatedAt":747},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[865,866,867],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"slug":749,"name":749,"fn":750,"description":751,"org":869,"tags":870,"stars":24,"repoUrl":25,"updatedAt":759},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[871,872,873],{"name":19,"slug":20,"type":17},{"name":22,"slug":23,"type":17},{"name":757,"slug":758,"type":17},{"slug":761,"name":761,"fn":762,"description":763,"org":875,"tags":876,"stars":24,"repoUrl":25,"updatedAt":768},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[877,878],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"slug":770,"name":770,"fn":771,"description":772,"org":880,"tags":881,"stars":24,"repoUrl":25,"updatedAt":781},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[882,883,884,885],{"name":19,"slug":20,"type":17},{"name":10,"slug":9,"type":17},{"name":778,"slug":779,"type":17},{"name":22,"slug":23,"type":17},860]