[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-braintree-automation":3,"mdc--sydr5q-key":49,"related-repo-composio-braintree-automation":1490,"related-org-composio-braintree-automation":1576},{"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},"braintree-automation","Braintree Automation","manage Braintree payment processing","Braintree Automation: manage payment processing via Stripe-compatible tools for customers, subscriptions, payment methods, and transactions",{"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},"Automation","automation","tag",{"name":19,"slug":20,"type":17},"MCP","mcp",{"name":22,"slug":23,"type":17},"Payments","payments",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:47:43.218154",null,7603,[30,31,32,16,33,34,35,9,36,37,38,20,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,16,33,34,35,9,36,37,38,20,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\u002Fbraintree-automation","---\nname: Braintree Automation\ndescription: \"Braintree Automation: manage payment processing via Stripe-compatible tools for customers, subscriptions, payment methods, and transactions\"\nrequires:\n  mcp: [rube]\n---\n\n# Braintree Automation\n\nAutomate payment processing operations via Stripe-compatible tooling including managing customers, subscriptions, payment methods, balance transactions, and customer searches. The Composio platform routes Braintree payment workflows through the Stripe toolkit for unified payment management.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fbraintree](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fbraintree)\n\n---\n\n## Setup\n\nThis skill requires the **Rube MCP server** connected at `https:\u002F\u002Frube.app\u002Fmcp`.\n\nBefore executing any tools, ensure an active connection exists for the `stripe` toolkit. If no connection is active, initiate one via `RUBE_MANAGE_CONNECTIONS`.\n\n---\n\n## Core Workflows\n\n### 1. Create and Manage Customers\n\nCreate new customers and retrieve existing customer details.\n\n**Tools:**\n- `STRIPE_CREATE_CUSTOMER` -- Create a new customer\n- `STRIPE_GET_CUSTOMERS_CUSTOMER` -- Retrieve a customer by ID\n- `STRIPE_POST_CUSTOMERS_CUSTOMER` -- Update an existing customer\n- `STRIPE_LIST_CUSTOMERS` -- List customers with pagination\n- `STRIPE_GET_V1_CUSTOMERS_SEARCH_CUSTOMERS` -- Search customers by email, name, metadata\n\n**Key Parameters for `STRIPE_CREATE_CUSTOMER`:**\n- `email` -- Customer's primary email address\n- `name` -- Full name or business name\n- `phone` -- Phone number with country code\n- `description` -- Internal reference notes\n- `address` -- Billing address object with `line1`, `city`, `state`, `postal_code`, `country`\n\n**Key Parameters for `STRIPE_GET_V1_CUSTOMERS_SEARCH_CUSTOMERS`:**\n- `query` (required) -- Stripe Search Query Language. Must use `field:value` syntax:\n  - `email:'user@example.com'` -- Exact match (case insensitive)\n  - `name~'John'` -- Substring match (min 3 chars)\n  - `metadata['key']:'value'` -- Metadata search\n  - `created>1609459200` -- Timestamp comparison\n  - Combine with `AND` or `OR` (max 10 clauses, cannot mix)\n- `limit` -- Results per page (1--100, default 10)\n\n**Example:**\n```\nTool: STRIPE_CREATE_CUSTOMER\nArguments:\n  email: \"jane@example.com\"\n  name: \"Jane Doe\"\n  description: \"Enterprise plan customer\"\n  address: {\n    \"line1\": \"123 Main St\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"postal_code\": \"94105\",\n    \"country\": \"US\"\n  }\n```\n\n---\n\n### 2. Manage Subscriptions\n\nCreate subscriptions and view customer subscription details.\n\n**Tools:**\n- `STRIPE_CREATE_SUBSCRIPTION` -- Create a new subscription for an existing customer\n- `STRIPE_GET_CUSTOMERS_CUSTOMER_SUBSCRIPTIONS` -- List all subscriptions for a customer\n- `STRIPE_GET_CUSTOMERS_CUSTOMER_SUBS_SUB_EXPOSED_ID` -- Get a specific subscription\n\n**Key Parameters for `STRIPE_CREATE_SUBSCRIPTION`:**\n- `customer` (required) -- Customer ID, e.g., `\"cus_xxxxxxxxxxxxxx\"`\n- `items` (required) -- Array of subscription items, each with:\n  - `price` -- Price ID, e.g., `\"price_xxxxxxxxxxxxxx\"` (use this OR `price_data`)\n  - `price_data` -- Inline price definition with `currency`, `product`, `unit_amount`, `recurring`\n  - `quantity` -- Item quantity\n- `default_payment_method` -- Payment method ID (not required for trials or invoice billing)\n- `trial_period_days` -- Trial days (no payment required during trial)\n- `collection_method` -- `\"charge_automatically\"` (default) or `\"send_invoice\"`\n- `cancel_at_period_end` -- Cancel at end of billing period (boolean)\n\n**Key Parameters for `STRIPE_GET_CUSTOMERS_CUSTOMER_SUBSCRIPTIONS`:**\n- `customer` (required) -- Customer ID\n- `status` -- Filter: `\"active\"`, `\"all\"`, `\"canceled\"`, `\"trialing\"`, `\"past_due\"`, etc.\n- `limit` -- Results per page (1--100, default 10)\n\n**Example:**\n```\nTool: STRIPE_CREATE_SUBSCRIPTION\nArguments:\n  customer: \"cus_abc123\"\n  items: [{\"price\": \"price_xyz789\", \"quantity\": 1}]\n  trial_period_days: 14\n```\n\n---\n\n### 3. Manage Payment Methods\n\nList and attach payment methods to customers.\n\n**Tools:**\n- `STRIPE_GET_CUSTOMERS_CUSTOMER_PAYMENT_METHODS` -- List a customer's payment methods\n- `STRIPE_ATTACH_PAYMENT_METHOD` -- Attach a payment method to a customer\n\n**Key Parameters for `STRIPE_GET_CUSTOMERS_CUSTOMER_PAYMENT_METHODS`:**\n- `customer` (required) -- Customer ID\n- `type` -- Filter by type: `\"card\"`, `\"sepa_debit\"`, `\"us_bank_account\"`, etc.\n- `limit` -- Results per page (1--100, default 10)\n\n**Example:**\n```\nTool: STRIPE_GET_CUSTOMERS_CUSTOMER_PAYMENT_METHODS\nArguments:\n  customer: \"cus_abc123\"\n  type: \"card\"\n  limit: 10\n```\n\n---\n\n### 4. View Balance Transactions\n\nRetrieve the history of balance changes for a customer.\n\n**Tool:** `STRIPE_GET_CUSTOMERS_CUSTOMER_BALANCE_TRANSACTIONS`\n\n**Key Parameters:**\n- `customer` (required) -- Customer ID\n- `created` -- Filter by creation date with comparison operators: `{\"gte\": 1609459200}` or `{\"gt\": 1609459200, \"lt\": 1640995200}`\n- `invoice` -- Filter by related invoice ID\n- `limit` -- Results per page (1--100)\n- `starting_after` \u002F `ending_before` -- Pagination cursors\n\n**Example:**\n```\nTool: STRIPE_GET_CUSTOMERS_CUSTOMER_BALANCE_TRANSACTIONS\nArguments:\n  customer: \"cus_abc123\"\n  limit: 25\n  created: {\"gte\": 1704067200}\n```\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Detail |\n|---------|--------|\n| **Search query syntax** | `STRIPE_GET_V1_CUSTOMERS_SEARCH_CUSTOMERS` requires field-prefixed queries (e.g., `email:'x'`). Bare strings without field prefixes are invalid and will error. |\n| **Subscription payment method** | `default_payment_method` is not required if using `trial_period_days` or `collection_method='send_invoice'`. Otherwise, the subscription may fail to activate. |\n| **Payment method attachment** | A `PaymentMethod` must be in a detached state before attaching to a customer. Already-attached methods will error. |\n| **Pagination cursors** | Use `starting_after`\u002F`ending_before` with object IDs, not page numbers. Extract the last\u002Ffirst object ID from each response. |\n| **Balance amounts in cents** | All monetary amounts are in the smallest currency unit (e.g., cents for USD). 1000 = $10.00. |\n| **Subscription status default** | `GET_CUSTOMERS_CUSTOMER_SUBSCRIPTIONS` excludes canceled subscriptions by default. Pass `status: \"all\"` to include them. |\n\n---\n\n## Quick Reference\n\n| Tool Slug | Description |\n|-----------|-------------|\n| `STRIPE_CREATE_CUSTOMER` | Create a new customer |\n| `STRIPE_GET_CUSTOMERS_CUSTOMER` | Retrieve a customer by ID |\n| `STRIPE_POST_CUSTOMERS_CUSTOMER` | Update an existing customer |\n| `STRIPE_LIST_CUSTOMERS` | List customers with pagination |\n| `STRIPE_GET_V1_CUSTOMERS_SEARCH_CUSTOMERS` | Search customers by attributes |\n| `STRIPE_CREATE_SUBSCRIPTION` | Create a subscription for a customer |\n| `STRIPE_GET_CUSTOMERS_CUSTOMER_SUBSCRIPTIONS` | List customer subscriptions |\n| `STRIPE_GET_CUSTOMERS_CUSTOMER_SUBS_SUB_EXPOSED_ID` | Get a specific subscription |\n| `STRIPE_GET_CUSTOMERS_CUSTOMER_PAYMENT_METHODS` | List customer payment methods |\n| `STRIPE_ATTACH_PAYMENT_METHOD` | Attach payment method to customer |\n| `STRIPE_GET_CUSTOMERS_CUSTOMER_BALANCE_TRANSACTIONS` | List customer balance transactions |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":50,"body":53},{"name":5,"description":7,"requires":51},{"mcp":52},[40],{"type":54,"children":55},"root",[56,63,69,89,93,100,121,141,144,150,157,162,170,230,245,338,351,452,460,472,475,481,486,493,529,542,709,722,791,798,807,810,816,821,828,853,866,919,926,935,938,944,949,964,972,1048,1055,1064,1067,1073,1265,1268,1274,1472,1475],{"type":57,"tag":58,"props":59,"children":60},"element","h1",{"id":4},[61],{"type":62,"value":5},"text",{"type":57,"tag":64,"props":65,"children":66},"p",{},[67],{"type":62,"value":68},"Automate payment processing operations via Stripe-compatible tooling including managing customers, subscriptions, payment methods, balance transactions, and customer searches. The Composio platform routes Braintree payment workflows through the Stripe toolkit for unified payment management.",{"type":57,"tag":64,"props":70,"children":71},{},[72,78,80],{"type":57,"tag":73,"props":74,"children":75},"strong",{},[76],{"type":62,"value":77},"Toolkit docs:",{"type":62,"value":79}," ",{"type":57,"tag":81,"props":82,"children":86},"a",{"href":83,"rel":84},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fbraintree",[85],"nofollow",[87],{"type":62,"value":88},"composio.dev\u002Ftoolkits\u002Fbraintree",{"type":57,"tag":90,"props":91,"children":92},"hr",{},[],{"type":57,"tag":94,"props":95,"children":97},"h2",{"id":96},"setup",[98],{"type":62,"value":99},"Setup",{"type":57,"tag":64,"props":101,"children":102},{},[103,105,110,112,119],{"type":62,"value":104},"This skill requires the ",{"type":57,"tag":73,"props":106,"children":107},{},[108],{"type":62,"value":109},"Rube MCP server",{"type":62,"value":111}," connected at ",{"type":57,"tag":113,"props":114,"children":116},"code",{"className":115},[],[117],{"type":62,"value":118},"https:\u002F\u002Frube.app\u002Fmcp",{"type":62,"value":120},".",{"type":57,"tag":64,"props":122,"children":123},{},[124,126,132,134,140],{"type":62,"value":125},"Before executing any tools, ensure an active connection exists for the ",{"type":57,"tag":113,"props":127,"children":129},{"className":128},[],[130],{"type":62,"value":131},"stripe",{"type":62,"value":133}," toolkit. If no connection is active, initiate one via ",{"type":57,"tag":113,"props":135,"children":137},{"className":136},[],[138],{"type":62,"value":139},"RUBE_MANAGE_CONNECTIONS",{"type":62,"value":120},{"type":57,"tag":90,"props":142,"children":143},{},[],{"type":57,"tag":94,"props":145,"children":147},{"id":146},"core-workflows",[148],{"type":62,"value":149},"Core Workflows",{"type":57,"tag":151,"props":152,"children":154},"h3",{"id":153},"_1-create-and-manage-customers",[155],{"type":62,"value":156},"1. Create and Manage Customers",{"type":57,"tag":64,"props":158,"children":159},{},[160],{"type":62,"value":161},"Create new customers and retrieve existing customer details.",{"type":57,"tag":64,"props":163,"children":164},{},[165],{"type":57,"tag":73,"props":166,"children":167},{},[168],{"type":62,"value":169},"Tools:",{"type":57,"tag":171,"props":172,"children":173},"ul",{},[174,186,197,208,219],{"type":57,"tag":175,"props":176,"children":177},"li",{},[178,184],{"type":57,"tag":113,"props":179,"children":181},{"className":180},[],[182],{"type":62,"value":183},"STRIPE_CREATE_CUSTOMER",{"type":62,"value":185}," -- Create a new customer",{"type":57,"tag":175,"props":187,"children":188},{},[189,195],{"type":57,"tag":113,"props":190,"children":192},{"className":191},[],[193],{"type":62,"value":194},"STRIPE_GET_CUSTOMERS_CUSTOMER",{"type":62,"value":196}," -- Retrieve a customer by ID",{"type":57,"tag":175,"props":198,"children":199},{},[200,206],{"type":57,"tag":113,"props":201,"children":203},{"className":202},[],[204],{"type":62,"value":205},"STRIPE_POST_CUSTOMERS_CUSTOMER",{"type":62,"value":207}," -- Update an existing customer",{"type":57,"tag":175,"props":209,"children":210},{},[211,217],{"type":57,"tag":113,"props":212,"children":214},{"className":213},[],[215],{"type":62,"value":216},"STRIPE_LIST_CUSTOMERS",{"type":62,"value":218}," -- List customers with pagination",{"type":57,"tag":175,"props":220,"children":221},{},[222,228],{"type":57,"tag":113,"props":223,"children":225},{"className":224},[],[226],{"type":62,"value":227},"STRIPE_GET_V1_CUSTOMERS_SEARCH_CUSTOMERS",{"type":62,"value":229}," -- Search customers by email, name, metadata",{"type":57,"tag":64,"props":231,"children":232},{},[233],{"type":57,"tag":73,"props":234,"children":235},{},[236,238,243],{"type":62,"value":237},"Key Parameters for ",{"type":57,"tag":113,"props":239,"children":241},{"className":240},[],[242],{"type":62,"value":183},{"type":62,"value":244},":",{"type":57,"tag":171,"props":246,"children":247},{},[248,259,270,281,292],{"type":57,"tag":175,"props":249,"children":250},{},[251,257],{"type":57,"tag":113,"props":252,"children":254},{"className":253},[],[255],{"type":62,"value":256},"email",{"type":62,"value":258}," -- Customer's primary email address",{"type":57,"tag":175,"props":260,"children":261},{},[262,268],{"type":57,"tag":113,"props":263,"children":265},{"className":264},[],[266],{"type":62,"value":267},"name",{"type":62,"value":269}," -- Full name or business name",{"type":57,"tag":175,"props":271,"children":272},{},[273,279],{"type":57,"tag":113,"props":274,"children":276},{"className":275},[],[277],{"type":62,"value":278},"phone",{"type":62,"value":280}," -- Phone number with country code",{"type":57,"tag":175,"props":282,"children":283},{},[284,290],{"type":57,"tag":113,"props":285,"children":287},{"className":286},[],[288],{"type":62,"value":289},"description",{"type":62,"value":291}," -- Internal reference notes",{"type":57,"tag":175,"props":293,"children":294},{},[295,301,303,309,311,317,318,324,325,331,332],{"type":57,"tag":113,"props":296,"children":298},{"className":297},[],[299],{"type":62,"value":300},"address",{"type":62,"value":302}," -- Billing address object with ",{"type":57,"tag":113,"props":304,"children":306},{"className":305},[],[307],{"type":62,"value":308},"line1",{"type":62,"value":310},", ",{"type":57,"tag":113,"props":312,"children":314},{"className":313},[],[315],{"type":62,"value":316},"city",{"type":62,"value":310},{"type":57,"tag":113,"props":319,"children":321},{"className":320},[],[322],{"type":62,"value":323},"state",{"type":62,"value":310},{"type":57,"tag":113,"props":326,"children":328},{"className":327},[],[329],{"type":62,"value":330},"postal_code",{"type":62,"value":310},{"type":57,"tag":113,"props":333,"children":335},{"className":334},[],[336],{"type":62,"value":337},"country",{"type":57,"tag":64,"props":339,"children":340},{},[341],{"type":57,"tag":73,"props":342,"children":343},{},[344,345,350],{"type":62,"value":237},{"type":57,"tag":113,"props":346,"children":348},{"className":347},[],[349],{"type":62,"value":227},{"type":62,"value":244},{"type":57,"tag":171,"props":352,"children":353},{},[354,441],{"type":57,"tag":175,"props":355,"children":356},{},[357,363,365,371,373],{"type":57,"tag":113,"props":358,"children":360},{"className":359},[],[361],{"type":62,"value":362},"query",{"type":62,"value":364}," (required) -- Stripe Search Query Language. Must use ",{"type":57,"tag":113,"props":366,"children":368},{"className":367},[],[369],{"type":62,"value":370},"field:value",{"type":62,"value":372}," syntax:\n",{"type":57,"tag":171,"props":374,"children":375},{},[376,387,398,409,420],{"type":57,"tag":175,"props":377,"children":378},{},[379,385],{"type":57,"tag":113,"props":380,"children":382},{"className":381},[],[383],{"type":62,"value":384},"email:'user@example.com'",{"type":62,"value":386}," -- Exact match (case insensitive)",{"type":57,"tag":175,"props":388,"children":389},{},[390,396],{"type":57,"tag":113,"props":391,"children":393},{"className":392},[],[394],{"type":62,"value":395},"name~'John'",{"type":62,"value":397}," -- Substring match (min 3 chars)",{"type":57,"tag":175,"props":399,"children":400},{},[401,407],{"type":57,"tag":113,"props":402,"children":404},{"className":403},[],[405],{"type":62,"value":406},"metadata['key']:'value'",{"type":62,"value":408}," -- Metadata search",{"type":57,"tag":175,"props":410,"children":411},{},[412,418],{"type":57,"tag":113,"props":413,"children":415},{"className":414},[],[416],{"type":62,"value":417},"created>1609459200",{"type":62,"value":419}," -- Timestamp comparison",{"type":57,"tag":175,"props":421,"children":422},{},[423,425,431,433,439],{"type":62,"value":424},"Combine with ",{"type":57,"tag":113,"props":426,"children":428},{"className":427},[],[429],{"type":62,"value":430},"AND",{"type":62,"value":432}," or ",{"type":57,"tag":113,"props":434,"children":436},{"className":435},[],[437],{"type":62,"value":438},"OR",{"type":62,"value":440}," (max 10 clauses, cannot mix)",{"type":57,"tag":175,"props":442,"children":443},{},[444,450],{"type":57,"tag":113,"props":445,"children":447},{"className":446},[],[448],{"type":62,"value":449},"limit",{"type":62,"value":451}," -- Results per page (1--100, default 10)",{"type":57,"tag":64,"props":453,"children":454},{},[455],{"type":57,"tag":73,"props":456,"children":457},{},[458],{"type":62,"value":459},"Example:",{"type":57,"tag":461,"props":462,"children":466},"pre",{"className":463,"code":465,"language":62},[464],"language-text","Tool: STRIPE_CREATE_CUSTOMER\nArguments:\n  email: \"jane@example.com\"\n  name: \"Jane Doe\"\n  description: \"Enterprise plan customer\"\n  address: {\n    \"line1\": \"123 Main St\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"postal_code\": \"94105\",\n    \"country\": \"US\"\n  }\n",[467],{"type":57,"tag":113,"props":468,"children":470},{"__ignoreMap":469},"",[471],{"type":62,"value":465},{"type":57,"tag":90,"props":473,"children":474},{},[],{"type":57,"tag":151,"props":476,"children":478},{"id":477},"_2-manage-subscriptions",[479],{"type":62,"value":480},"2. Manage Subscriptions",{"type":57,"tag":64,"props":482,"children":483},{},[484],{"type":62,"value":485},"Create subscriptions and view customer subscription details.",{"type":57,"tag":64,"props":487,"children":488},{},[489],{"type":57,"tag":73,"props":490,"children":491},{},[492],{"type":62,"value":169},{"type":57,"tag":171,"props":494,"children":495},{},[496,507,518],{"type":57,"tag":175,"props":497,"children":498},{},[499,505],{"type":57,"tag":113,"props":500,"children":502},{"className":501},[],[503],{"type":62,"value":504},"STRIPE_CREATE_SUBSCRIPTION",{"type":62,"value":506}," -- Create a new subscription for an existing customer",{"type":57,"tag":175,"props":508,"children":509},{},[510,516],{"type":57,"tag":113,"props":511,"children":513},{"className":512},[],[514],{"type":62,"value":515},"STRIPE_GET_CUSTOMERS_CUSTOMER_SUBSCRIPTIONS",{"type":62,"value":517}," -- List all subscriptions for a customer",{"type":57,"tag":175,"props":519,"children":520},{},[521,527],{"type":57,"tag":113,"props":522,"children":524},{"className":523},[],[525],{"type":62,"value":526},"STRIPE_GET_CUSTOMERS_CUSTOMER_SUBS_SUB_EXPOSED_ID",{"type":62,"value":528}," -- Get a specific subscription",{"type":57,"tag":64,"props":530,"children":531},{},[532],{"type":57,"tag":73,"props":533,"children":534},{},[535,536,541],{"type":62,"value":237},{"type":57,"tag":113,"props":537,"children":539},{"className":538},[],[540],{"type":62,"value":504},{"type":62,"value":244},{"type":57,"tag":171,"props":543,"children":544},{},[545,562,651,662,673,698],{"type":57,"tag":175,"props":546,"children":547},{},[548,554,556],{"type":57,"tag":113,"props":549,"children":551},{"className":550},[],[552],{"type":62,"value":553},"customer",{"type":62,"value":555}," (required) -- Customer ID, e.g., ",{"type":57,"tag":113,"props":557,"children":559},{"className":558},[],[560],{"type":62,"value":561},"\"cus_xxxxxxxxxxxxxx\"",{"type":57,"tag":175,"props":563,"children":564},{},[565,571,573],{"type":57,"tag":113,"props":566,"children":568},{"className":567},[],[569],{"type":62,"value":570},"items",{"type":62,"value":572}," (required) -- Array of subscription items, each with:\n",{"type":57,"tag":171,"props":574,"children":575},{},[576,603,640],{"type":57,"tag":175,"props":577,"children":578},{},[579,585,587,593,595,601],{"type":57,"tag":113,"props":580,"children":582},{"className":581},[],[583],{"type":62,"value":584},"price",{"type":62,"value":586}," -- Price ID, e.g., ",{"type":57,"tag":113,"props":588,"children":590},{"className":589},[],[591],{"type":62,"value":592},"\"price_xxxxxxxxxxxxxx\"",{"type":62,"value":594}," (use this OR ",{"type":57,"tag":113,"props":596,"children":598},{"className":597},[],[599],{"type":62,"value":600},"price_data",{"type":62,"value":602},")",{"type":57,"tag":175,"props":604,"children":605},{},[606,611,613,619,620,626,627,633,634],{"type":57,"tag":113,"props":607,"children":609},{"className":608},[],[610],{"type":62,"value":600},{"type":62,"value":612}," -- Inline price definition with ",{"type":57,"tag":113,"props":614,"children":616},{"className":615},[],[617],{"type":62,"value":618},"currency",{"type":62,"value":310},{"type":57,"tag":113,"props":621,"children":623},{"className":622},[],[624],{"type":62,"value":625},"product",{"type":62,"value":310},{"type":57,"tag":113,"props":628,"children":630},{"className":629},[],[631],{"type":62,"value":632},"unit_amount",{"type":62,"value":310},{"type":57,"tag":113,"props":635,"children":637},{"className":636},[],[638],{"type":62,"value":639},"recurring",{"type":57,"tag":175,"props":641,"children":642},{},[643,649],{"type":57,"tag":113,"props":644,"children":646},{"className":645},[],[647],{"type":62,"value":648},"quantity",{"type":62,"value":650}," -- Item quantity",{"type":57,"tag":175,"props":652,"children":653},{},[654,660],{"type":57,"tag":113,"props":655,"children":657},{"className":656},[],[658],{"type":62,"value":659},"default_payment_method",{"type":62,"value":661}," -- Payment method ID (not required for trials or invoice billing)",{"type":57,"tag":175,"props":663,"children":664},{},[665,671],{"type":57,"tag":113,"props":666,"children":668},{"className":667},[],[669],{"type":62,"value":670},"trial_period_days",{"type":62,"value":672}," -- Trial days (no payment required during trial)",{"type":57,"tag":175,"props":674,"children":675},{},[676,682,684,690,692],{"type":57,"tag":113,"props":677,"children":679},{"className":678},[],[680],{"type":62,"value":681},"collection_method",{"type":62,"value":683}," -- ",{"type":57,"tag":113,"props":685,"children":687},{"className":686},[],[688],{"type":62,"value":689},"\"charge_automatically\"",{"type":62,"value":691}," (default) or ",{"type":57,"tag":113,"props":693,"children":695},{"className":694},[],[696],{"type":62,"value":697},"\"send_invoice\"",{"type":57,"tag":175,"props":699,"children":700},{},[701,707],{"type":57,"tag":113,"props":702,"children":704},{"className":703},[],[705],{"type":62,"value":706},"cancel_at_period_end",{"type":62,"value":708}," -- Cancel at end of billing period (boolean)",{"type":57,"tag":64,"props":710,"children":711},{},[712],{"type":57,"tag":73,"props":713,"children":714},{},[715,716,721],{"type":62,"value":237},{"type":57,"tag":113,"props":717,"children":719},{"className":718},[],[720],{"type":62,"value":515},{"type":62,"value":244},{"type":57,"tag":171,"props":723,"children":724},{},[725,735,782],{"type":57,"tag":175,"props":726,"children":727},{},[728,733],{"type":57,"tag":113,"props":729,"children":731},{"className":730},[],[732],{"type":62,"value":553},{"type":62,"value":734}," (required) -- Customer ID",{"type":57,"tag":175,"props":736,"children":737},{},[738,744,746,752,753,759,760,766,767,773,774,780],{"type":57,"tag":113,"props":739,"children":741},{"className":740},[],[742],{"type":62,"value":743},"status",{"type":62,"value":745}," -- Filter: ",{"type":57,"tag":113,"props":747,"children":749},{"className":748},[],[750],{"type":62,"value":751},"\"active\"",{"type":62,"value":310},{"type":57,"tag":113,"props":754,"children":756},{"className":755},[],[757],{"type":62,"value":758},"\"all\"",{"type":62,"value":310},{"type":57,"tag":113,"props":761,"children":763},{"className":762},[],[764],{"type":62,"value":765},"\"canceled\"",{"type":62,"value":310},{"type":57,"tag":113,"props":768,"children":770},{"className":769},[],[771],{"type":62,"value":772},"\"trialing\"",{"type":62,"value":310},{"type":57,"tag":113,"props":775,"children":777},{"className":776},[],[778],{"type":62,"value":779},"\"past_due\"",{"type":62,"value":781},", etc.",{"type":57,"tag":175,"props":783,"children":784},{},[785,790],{"type":57,"tag":113,"props":786,"children":788},{"className":787},[],[789],{"type":62,"value":449},{"type":62,"value":451},{"type":57,"tag":64,"props":792,"children":793},{},[794],{"type":57,"tag":73,"props":795,"children":796},{},[797],{"type":62,"value":459},{"type":57,"tag":461,"props":799,"children":802},{"className":800,"code":801,"language":62},[464],"Tool: STRIPE_CREATE_SUBSCRIPTION\nArguments:\n  customer: \"cus_abc123\"\n  items: [{\"price\": \"price_xyz789\", \"quantity\": 1}]\n  trial_period_days: 14\n",[803],{"type":57,"tag":113,"props":804,"children":805},{"__ignoreMap":469},[806],{"type":62,"value":801},{"type":57,"tag":90,"props":808,"children":809},{},[],{"type":57,"tag":151,"props":811,"children":813},{"id":812},"_3-manage-payment-methods",[814],{"type":62,"value":815},"3. Manage Payment Methods",{"type":57,"tag":64,"props":817,"children":818},{},[819],{"type":62,"value":820},"List and attach payment methods to customers.",{"type":57,"tag":64,"props":822,"children":823},{},[824],{"type":57,"tag":73,"props":825,"children":826},{},[827],{"type":62,"value":169},{"type":57,"tag":171,"props":829,"children":830},{},[831,842],{"type":57,"tag":175,"props":832,"children":833},{},[834,840],{"type":57,"tag":113,"props":835,"children":837},{"className":836},[],[838],{"type":62,"value":839},"STRIPE_GET_CUSTOMERS_CUSTOMER_PAYMENT_METHODS",{"type":62,"value":841}," -- List a customer's payment methods",{"type":57,"tag":175,"props":843,"children":844},{},[845,851],{"type":57,"tag":113,"props":846,"children":848},{"className":847},[],[849],{"type":62,"value":850},"STRIPE_ATTACH_PAYMENT_METHOD",{"type":62,"value":852}," -- Attach a payment method to a customer",{"type":57,"tag":64,"props":854,"children":855},{},[856],{"type":57,"tag":73,"props":857,"children":858},{},[859,860,865],{"type":62,"value":237},{"type":57,"tag":113,"props":861,"children":863},{"className":862},[],[864],{"type":62,"value":839},{"type":62,"value":244},{"type":57,"tag":171,"props":867,"children":868},{},[869,878,910],{"type":57,"tag":175,"props":870,"children":871},{},[872,877],{"type":57,"tag":113,"props":873,"children":875},{"className":874},[],[876],{"type":62,"value":553},{"type":62,"value":734},{"type":57,"tag":175,"props":879,"children":880},{},[881,887,889,895,896,902,903,909],{"type":57,"tag":113,"props":882,"children":884},{"className":883},[],[885],{"type":62,"value":886},"type",{"type":62,"value":888}," -- Filter by type: ",{"type":57,"tag":113,"props":890,"children":892},{"className":891},[],[893],{"type":62,"value":894},"\"card\"",{"type":62,"value":310},{"type":57,"tag":113,"props":897,"children":899},{"className":898},[],[900],{"type":62,"value":901},"\"sepa_debit\"",{"type":62,"value":310},{"type":57,"tag":113,"props":904,"children":906},{"className":905},[],[907],{"type":62,"value":908},"\"us_bank_account\"",{"type":62,"value":781},{"type":57,"tag":175,"props":911,"children":912},{},[913,918],{"type":57,"tag":113,"props":914,"children":916},{"className":915},[],[917],{"type":62,"value":449},{"type":62,"value":451},{"type":57,"tag":64,"props":920,"children":921},{},[922],{"type":57,"tag":73,"props":923,"children":924},{},[925],{"type":62,"value":459},{"type":57,"tag":461,"props":927,"children":930},{"className":928,"code":929,"language":62},[464],"Tool: STRIPE_GET_CUSTOMERS_CUSTOMER_PAYMENT_METHODS\nArguments:\n  customer: \"cus_abc123\"\n  type: \"card\"\n  limit: 10\n",[931],{"type":57,"tag":113,"props":932,"children":933},{"__ignoreMap":469},[934],{"type":62,"value":929},{"type":57,"tag":90,"props":936,"children":937},{},[],{"type":57,"tag":151,"props":939,"children":941},{"id":940},"_4-view-balance-transactions",[942],{"type":62,"value":943},"4. View Balance Transactions",{"type":57,"tag":64,"props":945,"children":946},{},[947],{"type":62,"value":948},"Retrieve the history of balance changes for a customer.",{"type":57,"tag":64,"props":950,"children":951},{},[952,957,958],{"type":57,"tag":73,"props":953,"children":954},{},[955],{"type":62,"value":956},"Tool:",{"type":62,"value":79},{"type":57,"tag":113,"props":959,"children":961},{"className":960},[],[962],{"type":62,"value":963},"STRIPE_GET_CUSTOMERS_CUSTOMER_BALANCE_TRANSACTIONS",{"type":57,"tag":64,"props":965,"children":966},{},[967],{"type":57,"tag":73,"props":968,"children":969},{},[970],{"type":62,"value":971},"Key Parameters:",{"type":57,"tag":171,"props":973,"children":974},{},[975,984,1008,1019,1029],{"type":57,"tag":175,"props":976,"children":977},{},[978,983],{"type":57,"tag":113,"props":979,"children":981},{"className":980},[],[982],{"type":62,"value":553},{"type":62,"value":734},{"type":57,"tag":175,"props":985,"children":986},{},[987,993,995,1001,1002],{"type":57,"tag":113,"props":988,"children":990},{"className":989},[],[991],{"type":62,"value":992},"created",{"type":62,"value":994}," -- Filter by creation date with comparison operators: ",{"type":57,"tag":113,"props":996,"children":998},{"className":997},[],[999],{"type":62,"value":1000},"{\"gte\": 1609459200}",{"type":62,"value":432},{"type":57,"tag":113,"props":1003,"children":1005},{"className":1004},[],[1006],{"type":62,"value":1007},"{\"gt\": 1609459200, \"lt\": 1640995200}",{"type":57,"tag":175,"props":1009,"children":1010},{},[1011,1017],{"type":57,"tag":113,"props":1012,"children":1014},{"className":1013},[],[1015],{"type":62,"value":1016},"invoice",{"type":62,"value":1018}," -- Filter by related invoice ID",{"type":57,"tag":175,"props":1020,"children":1021},{},[1022,1027],{"type":57,"tag":113,"props":1023,"children":1025},{"className":1024},[],[1026],{"type":62,"value":449},{"type":62,"value":1028}," -- Results per page (1--100)",{"type":57,"tag":175,"props":1030,"children":1031},{},[1032,1038,1040,1046],{"type":57,"tag":113,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":62,"value":1037},"starting_after",{"type":62,"value":1039}," \u002F ",{"type":57,"tag":113,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":62,"value":1045},"ending_before",{"type":62,"value":1047}," -- Pagination cursors",{"type":57,"tag":64,"props":1049,"children":1050},{},[1051],{"type":57,"tag":73,"props":1052,"children":1053},{},[1054],{"type":62,"value":459},{"type":57,"tag":461,"props":1056,"children":1059},{"className":1057,"code":1058,"language":62},[464],"Tool: STRIPE_GET_CUSTOMERS_CUSTOMER_BALANCE_TRANSACTIONS\nArguments:\n  customer: \"cus_abc123\"\n  limit: 25\n  created: {\"gte\": 1704067200}\n",[1060],{"type":57,"tag":113,"props":1061,"children":1062},{"__ignoreMap":469},[1063],{"type":62,"value":1058},{"type":57,"tag":90,"props":1065,"children":1066},{},[],{"type":57,"tag":94,"props":1068,"children":1070},{"id":1069},"known-pitfalls",[1071],{"type":62,"value":1072},"Known Pitfalls",{"type":57,"tag":1074,"props":1075,"children":1076},"table",{},[1077,1096],{"type":57,"tag":1078,"props":1079,"children":1080},"thead",{},[1081],{"type":57,"tag":1082,"props":1083,"children":1084},"tr",{},[1085,1091],{"type":57,"tag":1086,"props":1087,"children":1088},"th",{},[1089],{"type":62,"value":1090},"Pitfall",{"type":57,"tag":1086,"props":1092,"children":1093},{},[1094],{"type":62,"value":1095},"Detail",{"type":57,"tag":1097,"props":1098,"children":1099},"tbody",{},[1100,1130,1165,1189,1219,1235],{"type":57,"tag":1082,"props":1101,"children":1102},{},[1103,1112],{"type":57,"tag":1104,"props":1105,"children":1106},"td",{},[1107],{"type":57,"tag":73,"props":1108,"children":1109},{},[1110],{"type":62,"value":1111},"Search query syntax",{"type":57,"tag":1104,"props":1113,"children":1114},{},[1115,1120,1122,1128],{"type":57,"tag":113,"props":1116,"children":1118},{"className":1117},[],[1119],{"type":62,"value":227},{"type":62,"value":1121}," requires field-prefixed queries (e.g., ",{"type":57,"tag":113,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":62,"value":1127},"email:'x'",{"type":62,"value":1129},"). Bare strings without field prefixes are invalid and will error.",{"type":57,"tag":1082,"props":1131,"children":1132},{},[1133,1141],{"type":57,"tag":1104,"props":1134,"children":1135},{},[1136],{"type":57,"tag":73,"props":1137,"children":1138},{},[1139],{"type":62,"value":1140},"Subscription payment method",{"type":57,"tag":1104,"props":1142,"children":1143},{},[1144,1149,1151,1156,1157,1163],{"type":57,"tag":113,"props":1145,"children":1147},{"className":1146},[],[1148],{"type":62,"value":659},{"type":62,"value":1150}," is not required if using ",{"type":57,"tag":113,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":62,"value":670},{"type":62,"value":432},{"type":57,"tag":113,"props":1158,"children":1160},{"className":1159},[],[1161],{"type":62,"value":1162},"collection_method='send_invoice'",{"type":62,"value":1164},". Otherwise, the subscription may fail to activate.",{"type":57,"tag":1082,"props":1166,"children":1167},{},[1168,1176],{"type":57,"tag":1104,"props":1169,"children":1170},{},[1171],{"type":57,"tag":73,"props":1172,"children":1173},{},[1174],{"type":62,"value":1175},"Payment method attachment",{"type":57,"tag":1104,"props":1177,"children":1178},{},[1179,1181,1187],{"type":62,"value":1180},"A ",{"type":57,"tag":113,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":62,"value":1186},"PaymentMethod",{"type":62,"value":1188}," must be in a detached state before attaching to a customer. Already-attached methods will error.",{"type":57,"tag":1082,"props":1190,"children":1191},{},[1192,1200],{"type":57,"tag":1104,"props":1193,"children":1194},{},[1195],{"type":57,"tag":73,"props":1196,"children":1197},{},[1198],{"type":62,"value":1199},"Pagination cursors",{"type":57,"tag":1104,"props":1201,"children":1202},{},[1203,1205,1210,1212,1217],{"type":62,"value":1204},"Use ",{"type":57,"tag":113,"props":1206,"children":1208},{"className":1207},[],[1209],{"type":62,"value":1037},{"type":62,"value":1211},"\u002F",{"type":57,"tag":113,"props":1213,"children":1215},{"className":1214},[],[1216],{"type":62,"value":1045},{"type":62,"value":1218}," with object IDs, not page numbers. Extract the last\u002Ffirst object ID from each response.",{"type":57,"tag":1082,"props":1220,"children":1221},{},[1222,1230],{"type":57,"tag":1104,"props":1223,"children":1224},{},[1225],{"type":57,"tag":73,"props":1226,"children":1227},{},[1228],{"type":62,"value":1229},"Balance amounts in cents",{"type":57,"tag":1104,"props":1231,"children":1232},{},[1233],{"type":62,"value":1234},"All monetary amounts are in the smallest currency unit (e.g., cents for USD). 1000 = $10.00.",{"type":57,"tag":1082,"props":1236,"children":1237},{},[1238,1246],{"type":57,"tag":1104,"props":1239,"children":1240},{},[1241],{"type":57,"tag":73,"props":1242,"children":1243},{},[1244],{"type":62,"value":1245},"Subscription status default",{"type":57,"tag":1104,"props":1247,"children":1248},{},[1249,1255,1257,1263],{"type":57,"tag":113,"props":1250,"children":1252},{"className":1251},[],[1253],{"type":62,"value":1254},"GET_CUSTOMERS_CUSTOMER_SUBSCRIPTIONS",{"type":62,"value":1256}," excludes canceled subscriptions by default. Pass ",{"type":57,"tag":113,"props":1258,"children":1260},{"className":1259},[],[1261],{"type":62,"value":1262},"status: \"all\"",{"type":62,"value":1264}," to include them.",{"type":57,"tag":90,"props":1266,"children":1267},{},[],{"type":57,"tag":94,"props":1269,"children":1271},{"id":1270},"quick-reference",[1272],{"type":62,"value":1273},"Quick Reference",{"type":57,"tag":1074,"props":1275,"children":1276},{},[1277,1293],{"type":57,"tag":1078,"props":1278,"children":1279},{},[1280],{"type":57,"tag":1082,"props":1281,"children":1282},{},[1283,1288],{"type":57,"tag":1086,"props":1284,"children":1285},{},[1286],{"type":62,"value":1287},"Tool Slug",{"type":57,"tag":1086,"props":1289,"children":1290},{},[1291],{"type":62,"value":1292},"Description",{"type":57,"tag":1097,"props":1294,"children":1295},{},[1296,1312,1328,1344,1360,1376,1392,1408,1424,1440,1456],{"type":57,"tag":1082,"props":1297,"children":1298},{},[1299,1307],{"type":57,"tag":1104,"props":1300,"children":1301},{},[1302],{"type":57,"tag":113,"props":1303,"children":1305},{"className":1304},[],[1306],{"type":62,"value":183},{"type":57,"tag":1104,"props":1308,"children":1309},{},[1310],{"type":62,"value":1311},"Create a new customer",{"type":57,"tag":1082,"props":1313,"children":1314},{},[1315,1323],{"type":57,"tag":1104,"props":1316,"children":1317},{},[1318],{"type":57,"tag":113,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":62,"value":194},{"type":57,"tag":1104,"props":1324,"children":1325},{},[1326],{"type":62,"value":1327},"Retrieve a customer by ID",{"type":57,"tag":1082,"props":1329,"children":1330},{},[1331,1339],{"type":57,"tag":1104,"props":1332,"children":1333},{},[1334],{"type":57,"tag":113,"props":1335,"children":1337},{"className":1336},[],[1338],{"type":62,"value":205},{"type":57,"tag":1104,"props":1340,"children":1341},{},[1342],{"type":62,"value":1343},"Update an existing customer",{"type":57,"tag":1082,"props":1345,"children":1346},{},[1347,1355],{"type":57,"tag":1104,"props":1348,"children":1349},{},[1350],{"type":57,"tag":113,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":62,"value":216},{"type":57,"tag":1104,"props":1356,"children":1357},{},[1358],{"type":62,"value":1359},"List customers with pagination",{"type":57,"tag":1082,"props":1361,"children":1362},{},[1363,1371],{"type":57,"tag":1104,"props":1364,"children":1365},{},[1366],{"type":57,"tag":113,"props":1367,"children":1369},{"className":1368},[],[1370],{"type":62,"value":227},{"type":57,"tag":1104,"props":1372,"children":1373},{},[1374],{"type":62,"value":1375},"Search customers by attributes",{"type":57,"tag":1082,"props":1377,"children":1378},{},[1379,1387],{"type":57,"tag":1104,"props":1380,"children":1381},{},[1382],{"type":57,"tag":113,"props":1383,"children":1385},{"className":1384},[],[1386],{"type":62,"value":504},{"type":57,"tag":1104,"props":1388,"children":1389},{},[1390],{"type":62,"value":1391},"Create a subscription for a customer",{"type":57,"tag":1082,"props":1393,"children":1394},{},[1395,1403],{"type":57,"tag":1104,"props":1396,"children":1397},{},[1398],{"type":57,"tag":113,"props":1399,"children":1401},{"className":1400},[],[1402],{"type":62,"value":515},{"type":57,"tag":1104,"props":1404,"children":1405},{},[1406],{"type":62,"value":1407},"List customer subscriptions",{"type":57,"tag":1082,"props":1409,"children":1410},{},[1411,1419],{"type":57,"tag":1104,"props":1412,"children":1413},{},[1414],{"type":57,"tag":113,"props":1415,"children":1417},{"className":1416},[],[1418],{"type":62,"value":526},{"type":57,"tag":1104,"props":1420,"children":1421},{},[1422],{"type":62,"value":1423},"Get a specific subscription",{"type":57,"tag":1082,"props":1425,"children":1426},{},[1427,1435],{"type":57,"tag":1104,"props":1428,"children":1429},{},[1430],{"type":57,"tag":113,"props":1431,"children":1433},{"className":1432},[],[1434],{"type":62,"value":839},{"type":57,"tag":1104,"props":1436,"children":1437},{},[1438],{"type":62,"value":1439},"List customer payment methods",{"type":57,"tag":1082,"props":1441,"children":1442},{},[1443,1451],{"type":57,"tag":1104,"props":1444,"children":1445},{},[1446],{"type":57,"tag":113,"props":1447,"children":1449},{"className":1448},[],[1450],{"type":62,"value":850},{"type":57,"tag":1104,"props":1452,"children":1453},{},[1454],{"type":62,"value":1455},"Attach payment method to customer",{"type":57,"tag":1082,"props":1457,"children":1458},{},[1459,1467],{"type":57,"tag":1104,"props":1460,"children":1461},{},[1462],{"type":57,"tag":113,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":62,"value":963},{"type":57,"tag":1104,"props":1468,"children":1469},{},[1470],{"type":62,"value":1471},"List customer balance transactions",{"type":57,"tag":90,"props":1473,"children":1474},{},[],{"type":57,"tag":64,"props":1476,"children":1477},{},[1478],{"type":57,"tag":1479,"props":1480,"children":1481},"em",{},[1482,1484],{"type":62,"value":1483},"Powered by ",{"type":57,"tag":81,"props":1485,"children":1488},{"href":1486,"rel":1487},"https:\u002F\u002Fcomposio.dev",[85],[1489],{"type":62,"value":10},{"items":1491,"total":1575},[1492,1506,1522,1531,1541,1553,1562],{"slug":1493,"name":1494,"fn":1495,"description":1496,"org":1497,"tags":1498,"stars":24,"repoUrl":25,"updatedAt":1505},"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},[1499,1500,1501,1502],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":19,"slug":20,"type":17},{"name":1503,"slug":1504,"type":17},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1507,"name":1508,"fn":1509,"description":1510,"org":1511,"tags":1512,"stars":24,"repoUrl":25,"updatedAt":1521},"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},[1513,1514,1517,1518],{"name":15,"slug":16,"type":17},{"name":1515,"slug":1516,"type":17},"Communications","communications",{"name":19,"slug":20,"type":17},{"name":1519,"slug":1520,"type":17},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1523,"name":1523,"fn":1524,"description":1525,"org":1526,"tags":1527,"stars":24,"repoUrl":25,"updatedAt":1530},"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},[1528,1529],{"name":15,"slug":16,"type":17},{"name":19,"slug":20,"type":17},"2026-07-12T08:09:55.453088",{"slug":1532,"name":1532,"fn":1533,"description":1534,"org":1535,"tags":1536,"stars":24,"repoUrl":25,"updatedAt":1540},"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},[1537,1538,1539],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":19,"slug":20,"type":17},"2026-07-15T05:45:16.470309",{"slug":1542,"name":1542,"fn":1543,"description":1544,"org":1545,"tags":1546,"stars":24,"repoUrl":25,"updatedAt":1552},"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},[1547,1548,1549],{"name":15,"slug":16,"type":17},{"name":19,"slug":20,"type":17},{"name":1550,"slug":1551,"type":17},"Security","security","2026-07-15T05:56:20.013366",{"slug":1554,"name":1554,"fn":1555,"description":1556,"org":1557,"tags":1558,"stars":24,"repoUrl":25,"updatedAt":1561},"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},[1559,1560],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},"2026-07-15T05:54:50.762889",{"slug":1563,"name":1563,"fn":1564,"description":1565,"org":1566,"tags":1567,"stars":24,"repoUrl":25,"updatedAt":1574},"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},[1568,1569,1570,1573],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":1571,"slug":1572,"type":17},"CRM","crm",{"name":19,"slug":20,"type":17},"2026-07-15T05:48:43.429136",860,{"items":1577,"total":1681},[1578,1585,1592,1597,1603,1609,1614,1621,1635,1648,1661,1671],{"slug":1493,"name":1494,"fn":1495,"description":1496,"org":1579,"tags":1580,"stars":24,"repoUrl":25,"updatedAt":1505},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1581,1582,1583,1584],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":19,"slug":20,"type":17},{"name":1503,"slug":1504,"type":17},{"slug":1507,"name":1508,"fn":1509,"description":1510,"org":1586,"tags":1587,"stars":24,"repoUrl":25,"updatedAt":1521},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1588,1589,1590,1591],{"name":15,"slug":16,"type":17},{"name":1515,"slug":1516,"type":17},{"name":19,"slug":20,"type":17},{"name":1519,"slug":1520,"type":17},{"slug":1523,"name":1523,"fn":1524,"description":1525,"org":1593,"tags":1594,"stars":24,"repoUrl":25,"updatedAt":1530},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1595,1596],{"name":15,"slug":16,"type":17},{"name":19,"slug":20,"type":17},{"slug":1532,"name":1532,"fn":1533,"description":1534,"org":1598,"tags":1599,"stars":24,"repoUrl":25,"updatedAt":1540},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1600,1601,1602],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":19,"slug":20,"type":17},{"slug":1542,"name":1542,"fn":1543,"description":1544,"org":1604,"tags":1605,"stars":24,"repoUrl":25,"updatedAt":1552},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1606,1607,1608],{"name":15,"slug":16,"type":17},{"name":19,"slug":20,"type":17},{"name":1550,"slug":1551,"type":17},{"slug":1554,"name":1554,"fn":1555,"description":1556,"org":1610,"tags":1611,"stars":24,"repoUrl":25,"updatedAt":1561},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1612,1613],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"slug":1563,"name":1563,"fn":1564,"description":1565,"org":1615,"tags":1616,"stars":24,"repoUrl":25,"updatedAt":1574},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1617,1618,1619,1620],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":1571,"slug":1572,"type":17},{"name":19,"slug":20,"type":17},{"slug":1622,"name":1622,"fn":1623,"description":1624,"org":1625,"tags":1626,"stars":24,"repoUrl":25,"updatedAt":1634},"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},[1627,1628,1631],{"name":15,"slug":16,"type":17},{"name":1629,"slug":1630,"type":17},"Documents","documents",{"name":1632,"slug":1633,"type":17},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1636,"name":1636,"fn":1637,"description":1638,"org":1639,"tags":1640,"stars":24,"repoUrl":25,"updatedAt":1647},"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},[1641,1642,1643,1644],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":19,"slug":20,"type":17},{"name":1645,"slug":1646,"type":17},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1649,"name":1649,"fn":1650,"description":1651,"org":1652,"tags":1653,"stars":24,"repoUrl":25,"updatedAt":1660},"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},[1654,1655,1656,1657],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":1571,"slug":1572,"type":17},{"name":1658,"slug":1659,"type":17},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1662,"name":1662,"fn":1663,"description":1664,"org":1665,"tags":1666,"stars":24,"repoUrl":25,"updatedAt":1670},"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},[1667,1668,1669],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":19,"slug":20,"type":17},"2026-07-15T05:47:51.742515",{"slug":1672,"name":1672,"fn":1673,"description":1674,"org":1675,"tags":1676,"stars":24,"repoUrl":25,"updatedAt":1680},"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},[1677,1678,1679],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":19,"slug":20,"type":17},"2026-07-15T05:45:05.303254",863]