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