[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-mailerlite-automation":3,"mdc--dfmp3m-key":53,"related-org-composio-mailerlite-automation":1361,"related-repo-composio-mailerlite-automation":1505},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":48,"sourceUrl":51,"mdContent":52},"mailerlite-automation","MailerLite Automation","automate MailerLite email marketing workflows","Automate email marketing workflows including subscriber management, campaign analytics, group segmentation, and account monitoring through MailerLite via Composio",{"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,19,22,25],{"name":15,"slug":16,"type":17},"Marketing","marketing","tag",{"name":10,"slug":9,"type":17},{"name":20,"slug":21,"type":17},"Automation","automation",{"name":23,"slug":24,"type":17},"MCP","mcp",{"name":26,"slug":27,"type":17},"Email Marketing","email-marketing",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:46:53.922899",null,7603,[34,35,36,21,37,38,39,9,40,41,42,24,43,44,45,46,47],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":29,"stars":28,"forks":32,"topics":49,"description":50},[34,35,36,21,37,38,39,9,40,41,42,24,43,44,45,46,47],"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\u002Fmailerlite-automation","---\nname: MailerLite Automation\ndescription: \"Automate email marketing workflows including subscriber management, campaign analytics, group segmentation, and account monitoring through MailerLite via Composio\"\nrequires:\n  mcp:\n    - rube\n---\n\n# MailerLite Automation\n\nAutomate email marketing operations -- manage subscribers, analyze campaign performance, organize groups and segments, and monitor account health -- all orchestrated through the Composio MCP integration.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fmailerlite](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fmailerlite)\n\n---\n\n## Setup\n\n1. Connect your MailerLite account through the Composio MCP server at `https:\u002F\u002Frube.app\u002Fmcp`\n2. The agent will prompt you with an authentication link if no active connection exists\n3. Once connected, all `MAILERLITE_*` tools become available for execution\n\n---\n\n## Core Workflows\n\n### 1. Verify Account & Fetch Metadata\nRetrieve account details including plan limits and timezone to ensure consistent reporting.\n\n**Tool:** `MAILERLITE_GET_ACCOUNT_INFO`\n\n```\nNo parameters required -- returns account metadata, plan details, and timezone configuration.\n```\n\nAlways run this first to establish plan constraints and timezone for consistent time-windowed queries.\n\n---\n\n### 2. Get Account-Wide Performance Stats\nRetrieve aggregate subscriber counts, sent email totals, and engagement metrics for a health snapshot.\n\n**Tool:** `MAILERLITE_GET_ACCOUNT_STATS`\n\n```\nNo parameters required -- returns overall subscriber counts, sent emails, and performance metrics.\n```\n\n---\n\n### 3. List & Paginate Subscribers\nRetrieve subscribers with optional status filtering and cursor-based pagination.\n\n**Tool:** `MAILERLITE_GET_SUBSCRIBERS`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `filter[status]` | string | No | Filter by: `active`, `unsubscribed`, `unconfirmed`, `bounced`, `junk` |\n| `limit` | integer | No | Subscribers per page (default: 25) |\n| `cursor` | string | No | Pagination cursor from previous response `meta.cursor` |\n| `include` | string | No | Set to `groups` to include group memberships |\n\n**Important:** Loop with `meta.next_cursor` until `null` to build a complete subscriber list.\n\n---\n\n### 4. List & Analyze Campaigns\nRetrieve campaigns with optional status\u002Ftype filters and page-based pagination.\n\n**Tool:** `MAILERLITE_GET_CAMPAIGNS`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `filter[status]` | string | No | Filter by: `sent`, `draft`, `ready` |\n| `filter[type]` | string | No | Filter by: `regular`, `ab`, `resend`, `rss` |\n| `limit` | integer | No | Items per page (default: 25) |\n| `page` | integer | No | Page number (default: 1) |\n\n**Important:** Paginate using `meta.last_page` to avoid omitting campaigns from historical analysis.\n\n---\n\n### 5. Manage Subscriber Groups\nList, filter, and sort subscriber groups for audience organization.\n\n**Tool:** `MAILERLITE_GET_GROUPS`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `filter[name]` | string | No | Partial name match filter |\n| `limit` | integer | No | Max groups to return |\n| `page` | integer | No | Page number (starting from 1) |\n| `sort` | string | No | Sort by: `name`, `total`, `open_rate`, `click_rate`, `created_at` (prefix `-` for descending) |\n\n---\n\n### 6. Retrieve Audience Segments & Custom Fields\nFetch segments and custom field definitions for advanced audience analysis.\n\n**Tools:** `MAILERLITE_GET_SEGMENTS` and `MAILERLITE_GET_FIELDS`\n\n**Segments:**\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `limit` | integer | No | Max segments to return (max 250) |\n| `page` | integer | No | Page number (starting from 1) |\n\n**Fields:** No parameters required -- returns all custom field definitions.\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Details |\n|---------|---------|\n| **Subscriber pagination is cursor-based** | `MAILERLITE_GET_SUBSCRIBERS` uses `meta.next_cursor` -- you must loop until `null` or counts will be incomplete |\n| **Campaign pagination is page-based** | `MAILERLITE_GET_CAMPAIGNS` uses `page`\u002F`limit` with `meta.last_page` -- stopping early omits campaigns and distorts trends |\n| **Sampling bias** | Computing engagement metrics from only the first page introduces bias; always aggregate across all pages |\n| **Nested response shape** | MailerLite payloads are nested under `results[i].response.data` with `data` and `meta` subkeys, not a flat `data` key -- parse accordingly |\n| **API quotas** | Subscriber listing is limited by MailerLite Connect API quotas -- plan batch operations accordingly |\n\n---\n\n## Quick Reference\n\n| Tool Slug | Purpose |\n|-----------|---------|\n| `MAILERLITE_GET_ACCOUNT_INFO` | Verify auth and review account metadata |\n| `MAILERLITE_GET_ACCOUNT_STATS` | Get aggregate performance metrics |\n| `MAILERLITE_GET_SUBSCRIBERS` | List subscribers with filtering and pagination |\n| `MAILERLITE_GET_CAMPAIGNS` | List campaigns with status\u002Ftype filters |\n| `MAILERLITE_GET_GROUPS` | List and sort subscriber groups |\n| `MAILERLITE_GET_SEGMENTS` | List audience segments |\n| `MAILERLITE_GET_FIELDS` | Retrieve custom field definitions |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":54,"body":57},{"name":5,"description":7,"requires":55},{"mcp":56},[44],{"type":58,"children":59},"root",[60,67,73,93,97,104,139,142,148,155,160,175,187,192,195,201,206,220,229,232,238,243,257,446,472,475,481,486,500,671,688,691,697,702,716,886,889,895,900,923,931,1006,1016,1019,1025,1200,1203,1209,1343,1346],{"type":61,"tag":62,"props":63,"children":64},"element","h1",{"id":4},[65],{"type":66,"value":5},"text",{"type":61,"tag":68,"props":69,"children":70},"p",{},[71],{"type":66,"value":72},"Automate email marketing operations -- manage subscribers, analyze campaign performance, organize groups and segments, and monitor account health -- all orchestrated through the Composio MCP integration.",{"type":61,"tag":68,"props":74,"children":75},{},[76,82,84],{"type":61,"tag":77,"props":78,"children":79},"strong",{},[80],{"type":66,"value":81},"Toolkit docs:",{"type":66,"value":83}," ",{"type":61,"tag":85,"props":86,"children":90},"a",{"href":87,"rel":88},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fmailerlite",[89],"nofollow",[91],{"type":66,"value":92},"composio.dev\u002Ftoolkits\u002Fmailerlite",{"type":61,"tag":94,"props":95,"children":96},"hr",{},[],{"type":61,"tag":98,"props":99,"children":101},"h2",{"id":100},"setup",[102],{"type":66,"value":103},"Setup",{"type":61,"tag":105,"props":106,"children":107},"ol",{},[108,121,126],{"type":61,"tag":109,"props":110,"children":111},"li",{},[112,114],{"type":66,"value":113},"Connect your MailerLite account through the Composio MCP server at ",{"type":61,"tag":115,"props":116,"children":118},"code",{"className":117},[],[119],{"type":66,"value":120},"https:\u002F\u002Frube.app\u002Fmcp",{"type":61,"tag":109,"props":122,"children":123},{},[124],{"type":66,"value":125},"The agent will prompt you with an authentication link if no active connection exists",{"type":61,"tag":109,"props":127,"children":128},{},[129,131,137],{"type":66,"value":130},"Once connected, all ",{"type":61,"tag":115,"props":132,"children":134},{"className":133},[],[135],{"type":66,"value":136},"MAILERLITE_*",{"type":66,"value":138}," tools become available for execution",{"type":61,"tag":94,"props":140,"children":141},{},[],{"type":61,"tag":98,"props":143,"children":145},{"id":144},"core-workflows",[146],{"type":66,"value":147},"Core Workflows",{"type":61,"tag":149,"props":150,"children":152},"h3",{"id":151},"_1-verify-account-fetch-metadata",[153],{"type":66,"value":154},"1. Verify Account & Fetch Metadata",{"type":61,"tag":68,"props":156,"children":157},{},[158],{"type":66,"value":159},"Retrieve account details including plan limits and timezone to ensure consistent reporting.",{"type":61,"tag":68,"props":161,"children":162},{},[163,168,169],{"type":61,"tag":77,"props":164,"children":165},{},[166],{"type":66,"value":167},"Tool:",{"type":66,"value":83},{"type":61,"tag":115,"props":170,"children":172},{"className":171},[],[173],{"type":66,"value":174},"MAILERLITE_GET_ACCOUNT_INFO",{"type":61,"tag":176,"props":177,"children":181},"pre",{"className":178,"code":180,"language":66},[179],"language-text","No parameters required -- returns account metadata, plan details, and timezone configuration.\n",[182],{"type":61,"tag":115,"props":183,"children":185},{"__ignoreMap":184},"",[186],{"type":66,"value":180},{"type":61,"tag":68,"props":188,"children":189},{},[190],{"type":66,"value":191},"Always run this first to establish plan constraints and timezone for consistent time-windowed queries.",{"type":61,"tag":94,"props":193,"children":194},{},[],{"type":61,"tag":149,"props":196,"children":198},{"id":197},"_2-get-account-wide-performance-stats",[199],{"type":66,"value":200},"2. Get Account-Wide Performance Stats",{"type":61,"tag":68,"props":202,"children":203},{},[204],{"type":66,"value":205},"Retrieve aggregate subscriber counts, sent email totals, and engagement metrics for a health snapshot.",{"type":61,"tag":68,"props":207,"children":208},{},[209,213,214],{"type":61,"tag":77,"props":210,"children":211},{},[212],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":215,"children":217},{"className":216},[],[218],{"type":66,"value":219},"MAILERLITE_GET_ACCOUNT_STATS",{"type":61,"tag":176,"props":221,"children":224},{"className":222,"code":223,"language":66},[179],"No parameters required -- returns overall subscriber counts, sent emails, and performance metrics.\n",[225],{"type":61,"tag":115,"props":226,"children":227},{"__ignoreMap":184},[228],{"type":66,"value":223},{"type":61,"tag":94,"props":230,"children":231},{},[],{"type":61,"tag":149,"props":233,"children":235},{"id":234},"_3-list-paginate-subscribers",[236],{"type":66,"value":237},"3. List & Paginate Subscribers",{"type":61,"tag":68,"props":239,"children":240},{},[241],{"type":66,"value":242},"Retrieve subscribers with optional status filtering and cursor-based pagination.",{"type":61,"tag":68,"props":244,"children":245},{},[246,250,251],{"type":61,"tag":77,"props":247,"children":248},{},[249],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":252,"children":254},{"className":253},[],[255],{"type":66,"value":256},"MAILERLITE_GET_SUBSCRIBERS",{"type":61,"tag":258,"props":259,"children":260},"table",{},[261,290],{"type":61,"tag":262,"props":263,"children":264},"thead",{},[265],{"type":61,"tag":266,"props":267,"children":268},"tr",{},[269,275,280,285],{"type":61,"tag":270,"props":271,"children":272},"th",{},[273],{"type":66,"value":274},"Parameter",{"type":61,"tag":270,"props":276,"children":277},{},[278],{"type":66,"value":279},"Type",{"type":61,"tag":270,"props":281,"children":282},{},[283],{"type":66,"value":284},"Required",{"type":61,"tag":270,"props":286,"children":287},{},[288],{"type":66,"value":289},"Description",{"type":61,"tag":291,"props":292,"children":293},"tbody",{},[294,357,383,413],{"type":61,"tag":266,"props":295,"children":296},{},[297,307,312,317],{"type":61,"tag":298,"props":299,"children":300},"td",{},[301],{"type":61,"tag":115,"props":302,"children":304},{"className":303},[],[305],{"type":66,"value":306},"filter[status]",{"type":61,"tag":298,"props":308,"children":309},{},[310],{"type":66,"value":311},"string",{"type":61,"tag":298,"props":313,"children":314},{},[315],{"type":66,"value":316},"No",{"type":61,"tag":298,"props":318,"children":319},{},[320,322,328,330,336,337,343,344,350,351],{"type":66,"value":321},"Filter by: ",{"type":61,"tag":115,"props":323,"children":325},{"className":324},[],[326],{"type":66,"value":327},"active",{"type":66,"value":329},", ",{"type":61,"tag":115,"props":331,"children":333},{"className":332},[],[334],{"type":66,"value":335},"unsubscribed",{"type":66,"value":329},{"type":61,"tag":115,"props":338,"children":340},{"className":339},[],[341],{"type":66,"value":342},"unconfirmed",{"type":66,"value":329},{"type":61,"tag":115,"props":345,"children":347},{"className":346},[],[348],{"type":66,"value":349},"bounced",{"type":66,"value":329},{"type":61,"tag":115,"props":352,"children":354},{"className":353},[],[355],{"type":66,"value":356},"junk",{"type":61,"tag":266,"props":358,"children":359},{},[360,369,374,378],{"type":61,"tag":298,"props":361,"children":362},{},[363],{"type":61,"tag":115,"props":364,"children":366},{"className":365},[],[367],{"type":66,"value":368},"limit",{"type":61,"tag":298,"props":370,"children":371},{},[372],{"type":66,"value":373},"integer",{"type":61,"tag":298,"props":375,"children":376},{},[377],{"type":66,"value":316},{"type":61,"tag":298,"props":379,"children":380},{},[381],{"type":66,"value":382},"Subscribers per page (default: 25)",{"type":61,"tag":266,"props":384,"children":385},{},[386,394,398,402],{"type":61,"tag":298,"props":387,"children":388},{},[389],{"type":61,"tag":115,"props":390,"children":392},{"className":391},[],[393],{"type":66,"value":40},{"type":61,"tag":298,"props":395,"children":396},{},[397],{"type":66,"value":311},{"type":61,"tag":298,"props":399,"children":400},{},[401],{"type":66,"value":316},{"type":61,"tag":298,"props":403,"children":404},{},[405,407],{"type":66,"value":406},"Pagination cursor from previous response ",{"type":61,"tag":115,"props":408,"children":410},{"className":409},[],[411],{"type":66,"value":412},"meta.cursor",{"type":61,"tag":266,"props":414,"children":415},{},[416,425,429,433],{"type":61,"tag":298,"props":417,"children":418},{},[419],{"type":61,"tag":115,"props":420,"children":422},{"className":421},[],[423],{"type":66,"value":424},"include",{"type":61,"tag":298,"props":426,"children":427},{},[428],{"type":66,"value":311},{"type":61,"tag":298,"props":430,"children":431},{},[432],{"type":66,"value":316},{"type":61,"tag":298,"props":434,"children":435},{},[436,438,444],{"type":66,"value":437},"Set to ",{"type":61,"tag":115,"props":439,"children":441},{"className":440},[],[442],{"type":66,"value":443},"groups",{"type":66,"value":445}," to include group memberships",{"type":61,"tag":68,"props":447,"children":448},{},[449,454,456,462,464,470],{"type":61,"tag":77,"props":450,"children":451},{},[452],{"type":66,"value":453},"Important:",{"type":66,"value":455}," Loop with ",{"type":61,"tag":115,"props":457,"children":459},{"className":458},[],[460],{"type":66,"value":461},"meta.next_cursor",{"type":66,"value":463}," until ",{"type":61,"tag":115,"props":465,"children":467},{"className":466},[],[468],{"type":66,"value":469},"null",{"type":66,"value":471}," to build a complete subscriber list.",{"type":61,"tag":94,"props":473,"children":474},{},[],{"type":61,"tag":149,"props":476,"children":478},{"id":477},"_4-list-analyze-campaigns",[479],{"type":66,"value":480},"4. List & Analyze Campaigns",{"type":61,"tag":68,"props":482,"children":483},{},[484],{"type":66,"value":485},"Retrieve campaigns with optional status\u002Ftype filters and page-based pagination.",{"type":61,"tag":68,"props":487,"children":488},{},[489,493,494],{"type":61,"tag":77,"props":490,"children":491},{},[492],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":495,"children":497},{"className":496},[],[498],{"type":66,"value":499},"MAILERLITE_GET_CAMPAIGNS",{"type":61,"tag":258,"props":501,"children":502},{},[503,525],{"type":61,"tag":262,"props":504,"children":505},{},[506],{"type":61,"tag":266,"props":507,"children":508},{},[509,513,517,521],{"type":61,"tag":270,"props":510,"children":511},{},[512],{"type":66,"value":274},{"type":61,"tag":270,"props":514,"children":515},{},[516],{"type":66,"value":279},{"type":61,"tag":270,"props":518,"children":519},{},[520],{"type":66,"value":284},{"type":61,"tag":270,"props":522,"children":523},{},[524],{"type":66,"value":289},{"type":61,"tag":291,"props":526,"children":527},{},[528,571,622,646],{"type":61,"tag":266,"props":529,"children":530},{},[531,539,543,547],{"type":61,"tag":298,"props":532,"children":533},{},[534],{"type":61,"tag":115,"props":535,"children":537},{"className":536},[],[538],{"type":66,"value":306},{"type":61,"tag":298,"props":540,"children":541},{},[542],{"type":66,"value":311},{"type":61,"tag":298,"props":544,"children":545},{},[546],{"type":66,"value":316},{"type":61,"tag":298,"props":548,"children":549},{},[550,551,557,558,564,565],{"type":66,"value":321},{"type":61,"tag":115,"props":552,"children":554},{"className":553},[],[555],{"type":66,"value":556},"sent",{"type":66,"value":329},{"type":61,"tag":115,"props":559,"children":561},{"className":560},[],[562],{"type":66,"value":563},"draft",{"type":66,"value":329},{"type":61,"tag":115,"props":566,"children":568},{"className":567},[],[569],{"type":66,"value":570},"ready",{"type":61,"tag":266,"props":572,"children":573},{},[574,583,587,591],{"type":61,"tag":298,"props":575,"children":576},{},[577],{"type":61,"tag":115,"props":578,"children":580},{"className":579},[],[581],{"type":66,"value":582},"filter[type]",{"type":61,"tag":298,"props":584,"children":585},{},[586],{"type":66,"value":311},{"type":61,"tag":298,"props":588,"children":589},{},[590],{"type":66,"value":316},{"type":61,"tag":298,"props":592,"children":593},{},[594,595,601,602,608,609,615,616],{"type":66,"value":321},{"type":61,"tag":115,"props":596,"children":598},{"className":597},[],[599],{"type":66,"value":600},"regular",{"type":66,"value":329},{"type":61,"tag":115,"props":603,"children":605},{"className":604},[],[606],{"type":66,"value":607},"ab",{"type":66,"value":329},{"type":61,"tag":115,"props":610,"children":612},{"className":611},[],[613],{"type":66,"value":614},"resend",{"type":66,"value":329},{"type":61,"tag":115,"props":617,"children":619},{"className":618},[],[620],{"type":66,"value":621},"rss",{"type":61,"tag":266,"props":623,"children":624},{},[625,633,637,641],{"type":61,"tag":298,"props":626,"children":627},{},[628],{"type":61,"tag":115,"props":629,"children":631},{"className":630},[],[632],{"type":66,"value":368},{"type":61,"tag":298,"props":634,"children":635},{},[636],{"type":66,"value":373},{"type":61,"tag":298,"props":638,"children":639},{},[640],{"type":66,"value":316},{"type":61,"tag":298,"props":642,"children":643},{},[644],{"type":66,"value":645},"Items per page (default: 25)",{"type":61,"tag":266,"props":647,"children":648},{},[649,658,662,666],{"type":61,"tag":298,"props":650,"children":651},{},[652],{"type":61,"tag":115,"props":653,"children":655},{"className":654},[],[656],{"type":66,"value":657},"page",{"type":61,"tag":298,"props":659,"children":660},{},[661],{"type":66,"value":373},{"type":61,"tag":298,"props":663,"children":664},{},[665],{"type":66,"value":316},{"type":61,"tag":298,"props":667,"children":668},{},[669],{"type":66,"value":670},"Page number (default: 1)",{"type":61,"tag":68,"props":672,"children":673},{},[674,678,680,686],{"type":61,"tag":77,"props":675,"children":676},{},[677],{"type":66,"value":453},{"type":66,"value":679}," Paginate using ",{"type":61,"tag":115,"props":681,"children":683},{"className":682},[],[684],{"type":66,"value":685},"meta.last_page",{"type":66,"value":687}," to avoid omitting campaigns from historical analysis.",{"type":61,"tag":94,"props":689,"children":690},{},[],{"type":61,"tag":149,"props":692,"children":694},{"id":693},"_5-manage-subscriber-groups",[695],{"type":66,"value":696},"5. Manage Subscriber Groups",{"type":61,"tag":68,"props":698,"children":699},{},[700],{"type":66,"value":701},"List, filter, and sort subscriber groups for audience organization.",{"type":61,"tag":68,"props":703,"children":704},{},[705,709,710],{"type":61,"tag":77,"props":706,"children":707},{},[708],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":711,"children":713},{"className":712},[],[714],{"type":66,"value":715},"MAILERLITE_GET_GROUPS",{"type":61,"tag":258,"props":717,"children":718},{},[719,741],{"type":61,"tag":262,"props":720,"children":721},{},[722],{"type":61,"tag":266,"props":723,"children":724},{},[725,729,733,737],{"type":61,"tag":270,"props":726,"children":727},{},[728],{"type":66,"value":274},{"type":61,"tag":270,"props":730,"children":731},{},[732],{"type":66,"value":279},{"type":61,"tag":270,"props":734,"children":735},{},[736],{"type":66,"value":284},{"type":61,"tag":270,"props":738,"children":739},{},[740],{"type":66,"value":289},{"type":61,"tag":291,"props":742,"children":743},{},[744,769,793,817],{"type":61,"tag":266,"props":745,"children":746},{},[747,756,760,764],{"type":61,"tag":298,"props":748,"children":749},{},[750],{"type":61,"tag":115,"props":751,"children":753},{"className":752},[],[754],{"type":66,"value":755},"filter[name]",{"type":61,"tag":298,"props":757,"children":758},{},[759],{"type":66,"value":311},{"type":61,"tag":298,"props":761,"children":762},{},[763],{"type":66,"value":316},{"type":61,"tag":298,"props":765,"children":766},{},[767],{"type":66,"value":768},"Partial name match filter",{"type":61,"tag":266,"props":770,"children":771},{},[772,780,784,788],{"type":61,"tag":298,"props":773,"children":774},{},[775],{"type":61,"tag":115,"props":776,"children":778},{"className":777},[],[779],{"type":66,"value":368},{"type":61,"tag":298,"props":781,"children":782},{},[783],{"type":66,"value":373},{"type":61,"tag":298,"props":785,"children":786},{},[787],{"type":66,"value":316},{"type":61,"tag":298,"props":789,"children":790},{},[791],{"type":66,"value":792},"Max groups to return",{"type":61,"tag":266,"props":794,"children":795},{},[796,804,808,812],{"type":61,"tag":298,"props":797,"children":798},{},[799],{"type":61,"tag":115,"props":800,"children":802},{"className":801},[],[803],{"type":66,"value":657},{"type":61,"tag":298,"props":805,"children":806},{},[807],{"type":66,"value":373},{"type":61,"tag":298,"props":809,"children":810},{},[811],{"type":66,"value":316},{"type":61,"tag":298,"props":813,"children":814},{},[815],{"type":66,"value":816},"Page number (starting from 1)",{"type":61,"tag":266,"props":818,"children":819},{},[820,829,833,837],{"type":61,"tag":298,"props":821,"children":822},{},[823],{"type":61,"tag":115,"props":824,"children":826},{"className":825},[],[827],{"type":66,"value":828},"sort",{"type":61,"tag":298,"props":830,"children":831},{},[832],{"type":66,"value":311},{"type":61,"tag":298,"props":834,"children":835},{},[836],{"type":66,"value":316},{"type":61,"tag":298,"props":838,"children":839},{},[840,842,848,849,855,856,862,863,869,870,876,878,884],{"type":66,"value":841},"Sort by: ",{"type":61,"tag":115,"props":843,"children":845},{"className":844},[],[846],{"type":66,"value":847},"name",{"type":66,"value":329},{"type":61,"tag":115,"props":850,"children":852},{"className":851},[],[853],{"type":66,"value":854},"total",{"type":66,"value":329},{"type":61,"tag":115,"props":857,"children":859},{"className":858},[],[860],{"type":66,"value":861},"open_rate",{"type":66,"value":329},{"type":61,"tag":115,"props":864,"children":866},{"className":865},[],[867],{"type":66,"value":868},"click_rate",{"type":66,"value":329},{"type":61,"tag":115,"props":871,"children":873},{"className":872},[],[874],{"type":66,"value":875},"created_at",{"type":66,"value":877}," (prefix ",{"type":61,"tag":115,"props":879,"children":881},{"className":880},[],[882],{"type":66,"value":883},"-",{"type":66,"value":885}," for descending)",{"type":61,"tag":94,"props":887,"children":888},{},[],{"type":61,"tag":149,"props":890,"children":892},{"id":891},"_6-retrieve-audience-segments-custom-fields",[893],{"type":66,"value":894},"6. Retrieve Audience Segments & Custom Fields",{"type":61,"tag":68,"props":896,"children":897},{},[898],{"type":66,"value":899},"Fetch segments and custom field definitions for advanced audience analysis.",{"type":61,"tag":68,"props":901,"children":902},{},[903,908,909,915,917],{"type":61,"tag":77,"props":904,"children":905},{},[906],{"type":66,"value":907},"Tools:",{"type":66,"value":83},{"type":61,"tag":115,"props":910,"children":912},{"className":911},[],[913],{"type":66,"value":914},"MAILERLITE_GET_SEGMENTS",{"type":66,"value":916}," and ",{"type":61,"tag":115,"props":918,"children":920},{"className":919},[],[921],{"type":66,"value":922},"MAILERLITE_GET_FIELDS",{"type":61,"tag":68,"props":924,"children":925},{},[926],{"type":61,"tag":77,"props":927,"children":928},{},[929],{"type":66,"value":930},"Segments:",{"type":61,"tag":258,"props":932,"children":933},{},[934,956],{"type":61,"tag":262,"props":935,"children":936},{},[937],{"type":61,"tag":266,"props":938,"children":939},{},[940,944,948,952],{"type":61,"tag":270,"props":941,"children":942},{},[943],{"type":66,"value":274},{"type":61,"tag":270,"props":945,"children":946},{},[947],{"type":66,"value":279},{"type":61,"tag":270,"props":949,"children":950},{},[951],{"type":66,"value":284},{"type":61,"tag":270,"props":953,"children":954},{},[955],{"type":66,"value":289},{"type":61,"tag":291,"props":957,"children":958},{},[959,983],{"type":61,"tag":266,"props":960,"children":961},{},[962,970,974,978],{"type":61,"tag":298,"props":963,"children":964},{},[965],{"type":61,"tag":115,"props":966,"children":968},{"className":967},[],[969],{"type":66,"value":368},{"type":61,"tag":298,"props":971,"children":972},{},[973],{"type":66,"value":373},{"type":61,"tag":298,"props":975,"children":976},{},[977],{"type":66,"value":316},{"type":61,"tag":298,"props":979,"children":980},{},[981],{"type":66,"value":982},"Max segments to return (max 250)",{"type":61,"tag":266,"props":984,"children":985},{},[986,994,998,1002],{"type":61,"tag":298,"props":987,"children":988},{},[989],{"type":61,"tag":115,"props":990,"children":992},{"className":991},[],[993],{"type":66,"value":657},{"type":61,"tag":298,"props":995,"children":996},{},[997],{"type":66,"value":373},{"type":61,"tag":298,"props":999,"children":1000},{},[1001],{"type":66,"value":316},{"type":61,"tag":298,"props":1003,"children":1004},{},[1005],{"type":66,"value":816},{"type":61,"tag":68,"props":1007,"children":1008},{},[1009,1014],{"type":61,"tag":77,"props":1010,"children":1011},{},[1012],{"type":66,"value":1013},"Fields:",{"type":66,"value":1015}," No parameters required -- returns all custom field definitions.",{"type":61,"tag":94,"props":1017,"children":1018},{},[],{"type":61,"tag":98,"props":1020,"children":1022},{"id":1021},"known-pitfalls",[1023],{"type":66,"value":1024},"Known Pitfalls",{"type":61,"tag":258,"props":1026,"children":1027},{},[1028,1044],{"type":61,"tag":262,"props":1029,"children":1030},{},[1031],{"type":61,"tag":266,"props":1032,"children":1033},{},[1034,1039],{"type":61,"tag":270,"props":1035,"children":1036},{},[1037],{"type":66,"value":1038},"Pitfall",{"type":61,"tag":270,"props":1040,"children":1041},{},[1042],{"type":66,"value":1043},"Details",{"type":61,"tag":291,"props":1045,"children":1046},{},[1047,1082,1123,1139,1184],{"type":61,"tag":266,"props":1048,"children":1049},{},[1050,1058],{"type":61,"tag":298,"props":1051,"children":1052},{},[1053],{"type":61,"tag":77,"props":1054,"children":1055},{},[1056],{"type":66,"value":1057},"Subscriber pagination is cursor-based",{"type":61,"tag":298,"props":1059,"children":1060},{},[1061,1066,1068,1073,1075,1080],{"type":61,"tag":115,"props":1062,"children":1064},{"className":1063},[],[1065],{"type":66,"value":256},{"type":66,"value":1067}," uses ",{"type":61,"tag":115,"props":1069,"children":1071},{"className":1070},[],[1072],{"type":66,"value":461},{"type":66,"value":1074}," -- you must loop until ",{"type":61,"tag":115,"props":1076,"children":1078},{"className":1077},[],[1079],{"type":66,"value":469},{"type":66,"value":1081}," or counts will be incomplete",{"type":61,"tag":266,"props":1083,"children":1084},{},[1085,1093],{"type":61,"tag":298,"props":1086,"children":1087},{},[1088],{"type":61,"tag":77,"props":1089,"children":1090},{},[1091],{"type":66,"value":1092},"Campaign pagination is page-based",{"type":61,"tag":298,"props":1094,"children":1095},{},[1096,1101,1102,1107,1109,1114,1116,1121],{"type":61,"tag":115,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":66,"value":499},{"type":66,"value":1067},{"type":61,"tag":115,"props":1103,"children":1105},{"className":1104},[],[1106],{"type":66,"value":657},{"type":66,"value":1108},"\u002F",{"type":61,"tag":115,"props":1110,"children":1112},{"className":1111},[],[1113],{"type":66,"value":368},{"type":66,"value":1115}," with ",{"type":61,"tag":115,"props":1117,"children":1119},{"className":1118},[],[1120],{"type":66,"value":685},{"type":66,"value":1122}," -- stopping early omits campaigns and distorts trends",{"type":61,"tag":266,"props":1124,"children":1125},{},[1126,1134],{"type":61,"tag":298,"props":1127,"children":1128},{},[1129],{"type":61,"tag":77,"props":1130,"children":1131},{},[1132],{"type":66,"value":1133},"Sampling bias",{"type":61,"tag":298,"props":1135,"children":1136},{},[1137],{"type":66,"value":1138},"Computing engagement metrics from only the first page introduces bias; always aggregate across all pages",{"type":61,"tag":266,"props":1140,"children":1141},{},[1142,1150],{"type":61,"tag":298,"props":1143,"children":1144},{},[1145],{"type":61,"tag":77,"props":1146,"children":1147},{},[1148],{"type":66,"value":1149},"Nested response shape",{"type":61,"tag":298,"props":1151,"children":1152},{},[1153,1155,1161,1162,1168,1169,1175,1177,1182],{"type":66,"value":1154},"MailerLite payloads are nested under ",{"type":61,"tag":115,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":66,"value":1160},"results[i].response.data",{"type":66,"value":1115},{"type":61,"tag":115,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":66,"value":1167},"data",{"type":66,"value":916},{"type":61,"tag":115,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":66,"value":1174},"meta",{"type":66,"value":1176}," subkeys, not a flat ",{"type":61,"tag":115,"props":1178,"children":1180},{"className":1179},[],[1181],{"type":66,"value":1167},{"type":66,"value":1183}," key -- parse accordingly",{"type":61,"tag":266,"props":1185,"children":1186},{},[1187,1195],{"type":61,"tag":298,"props":1188,"children":1189},{},[1190],{"type":61,"tag":77,"props":1191,"children":1192},{},[1193],{"type":66,"value":1194},"API quotas",{"type":61,"tag":298,"props":1196,"children":1197},{},[1198],{"type":66,"value":1199},"Subscriber listing is limited by MailerLite Connect API quotas -- plan batch operations accordingly",{"type":61,"tag":94,"props":1201,"children":1202},{},[],{"type":61,"tag":98,"props":1204,"children":1206},{"id":1205},"quick-reference",[1207],{"type":66,"value":1208},"Quick Reference",{"type":61,"tag":258,"props":1210,"children":1211},{},[1212,1228],{"type":61,"tag":262,"props":1213,"children":1214},{},[1215],{"type":61,"tag":266,"props":1216,"children":1217},{},[1218,1223],{"type":61,"tag":270,"props":1219,"children":1220},{},[1221],{"type":66,"value":1222},"Tool Slug",{"type":61,"tag":270,"props":1224,"children":1225},{},[1226],{"type":66,"value":1227},"Purpose",{"type":61,"tag":291,"props":1229,"children":1230},{},[1231,1247,1263,1279,1295,1311,1327],{"type":61,"tag":266,"props":1232,"children":1233},{},[1234,1242],{"type":61,"tag":298,"props":1235,"children":1236},{},[1237],{"type":61,"tag":115,"props":1238,"children":1240},{"className":1239},[],[1241],{"type":66,"value":174},{"type":61,"tag":298,"props":1243,"children":1244},{},[1245],{"type":66,"value":1246},"Verify auth and review account metadata",{"type":61,"tag":266,"props":1248,"children":1249},{},[1250,1258],{"type":61,"tag":298,"props":1251,"children":1252},{},[1253],{"type":61,"tag":115,"props":1254,"children":1256},{"className":1255},[],[1257],{"type":66,"value":219},{"type":61,"tag":298,"props":1259,"children":1260},{},[1261],{"type":66,"value":1262},"Get aggregate performance metrics",{"type":61,"tag":266,"props":1264,"children":1265},{},[1266,1274],{"type":61,"tag":298,"props":1267,"children":1268},{},[1269],{"type":61,"tag":115,"props":1270,"children":1272},{"className":1271},[],[1273],{"type":66,"value":256},{"type":61,"tag":298,"props":1275,"children":1276},{},[1277],{"type":66,"value":1278},"List subscribers with filtering and pagination",{"type":61,"tag":266,"props":1280,"children":1281},{},[1282,1290],{"type":61,"tag":298,"props":1283,"children":1284},{},[1285],{"type":61,"tag":115,"props":1286,"children":1288},{"className":1287},[],[1289],{"type":66,"value":499},{"type":61,"tag":298,"props":1291,"children":1292},{},[1293],{"type":66,"value":1294},"List campaigns with status\u002Ftype filters",{"type":61,"tag":266,"props":1296,"children":1297},{},[1298,1306],{"type":61,"tag":298,"props":1299,"children":1300},{},[1301],{"type":61,"tag":115,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":66,"value":715},{"type":61,"tag":298,"props":1307,"children":1308},{},[1309],{"type":66,"value":1310},"List and sort subscriber groups",{"type":61,"tag":266,"props":1312,"children":1313},{},[1314,1322],{"type":61,"tag":298,"props":1315,"children":1316},{},[1317],{"type":61,"tag":115,"props":1318,"children":1320},{"className":1319},[],[1321],{"type":66,"value":914},{"type":61,"tag":298,"props":1323,"children":1324},{},[1325],{"type":66,"value":1326},"List audience segments",{"type":61,"tag":266,"props":1328,"children":1329},{},[1330,1338],{"type":61,"tag":298,"props":1331,"children":1332},{},[1333],{"type":61,"tag":115,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":66,"value":922},{"type":61,"tag":298,"props":1339,"children":1340},{},[1341],{"type":66,"value":1342},"Retrieve custom field definitions",{"type":61,"tag":94,"props":1344,"children":1345},{},[],{"type":61,"tag":68,"props":1347,"children":1348},{},[1349],{"type":61,"tag":1350,"props":1351,"children":1352},"em",{},[1353,1355],{"type":66,"value":1354},"Powered by ",{"type":61,"tag":85,"props":1356,"children":1359},{"href":1357,"rel":1358},"https:\u002F\u002Fcomposio.dev",[89],[1360],{"type":66,"value":10},{"items":1362,"total":1504},[1363,1377,1393,1402,1412,1424,1433,1446,1460,1473,1484,1494],{"slug":1364,"name":1365,"fn":1366,"description":1367,"org":1368,"tags":1369,"stars":28,"repoUrl":29,"updatedAt":1376},"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},[1370,1371,1372,1373],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"name":1374,"slug":1375,"type":17},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1378,"name":1379,"fn":1380,"description":1381,"org":1382,"tags":1383,"stars":28,"repoUrl":29,"updatedAt":1392},"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},[1384,1385,1388,1389],{"name":20,"slug":21,"type":17},{"name":1386,"slug":1387,"type":17},"Communications","communications",{"name":23,"slug":24,"type":17},{"name":1390,"slug":1391,"type":17},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1394,"name":1394,"fn":1395,"description":1396,"org":1397,"tags":1398,"stars":28,"repoUrl":29,"updatedAt":1401},"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},[1399,1400],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},"2026-07-12T08:09:55.453088",{"slug":1403,"name":1403,"fn":1404,"description":1405,"org":1406,"tags":1407,"stars":28,"repoUrl":29,"updatedAt":1411},"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},[1408,1409,1410],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},"2026-07-15T05:45:16.470309",{"slug":1413,"name":1413,"fn":1414,"description":1415,"org":1416,"tags":1417,"stars":28,"repoUrl":29,"updatedAt":1423},"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},[1418,1419,1420],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},{"name":1421,"slug":1422,"type":17},"Security","security","2026-07-15T05:56:20.013366",{"slug":1425,"name":1425,"fn":1426,"description":1427,"org":1428,"tags":1429,"stars":28,"repoUrl":29,"updatedAt":1432},"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},[1430,1431],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},"2026-07-15T05:54:50.762889",{"slug":1434,"name":1434,"fn":1435,"description":1436,"org":1437,"tags":1438,"stars":28,"repoUrl":29,"updatedAt":1445},"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},[1439,1440,1441,1444],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1442,"slug":1443,"type":17},"CRM","crm",{"name":23,"slug":24,"type":17},"2026-07-15T05:48:43.429136",{"slug":1447,"name":1447,"fn":1448,"description":1449,"org":1450,"tags":1451,"stars":28,"repoUrl":29,"updatedAt":1459},"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},[1452,1453,1456],{"name":20,"slug":21,"type":17},{"name":1454,"slug":1455,"type":17},"Documents","documents",{"name":1457,"slug":1458,"type":17},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1461,"name":1461,"fn":1462,"description":1463,"org":1464,"tags":1465,"stars":28,"repoUrl":29,"updatedAt":1472},"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},[1466,1467,1468,1469],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"name":1470,"slug":1471,"type":17},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1474,"name":1474,"fn":1475,"description":1476,"org":1477,"tags":1478,"stars":28,"repoUrl":29,"updatedAt":1483},"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},[1479,1480,1481,1482],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1442,"slug":1443,"type":17},{"name":26,"slug":27,"type":17},"2026-07-15T05:49:44.281711",{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1488,"tags":1489,"stars":28,"repoUrl":29,"updatedAt":1493},"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},[1490,1491,1492],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},"2026-07-15T05:47:51.742515",{"slug":1495,"name":1495,"fn":1496,"description":1497,"org":1498,"tags":1499,"stars":28,"repoUrl":29,"updatedAt":1503},"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},[1500,1501,1502],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},"2026-07-15T05:45:05.303254",863,{"items":1506,"total":1550},[1507,1514,1521,1526,1532,1538,1543],{"slug":1364,"name":1365,"fn":1366,"description":1367,"org":1508,"tags":1509,"stars":28,"repoUrl":29,"updatedAt":1376},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1510,1511,1512,1513],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"name":1374,"slug":1375,"type":17},{"slug":1378,"name":1379,"fn":1380,"description":1381,"org":1515,"tags":1516,"stars":28,"repoUrl":29,"updatedAt":1392},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1517,1518,1519,1520],{"name":20,"slug":21,"type":17},{"name":1386,"slug":1387,"type":17},{"name":23,"slug":24,"type":17},{"name":1390,"slug":1391,"type":17},{"slug":1394,"name":1394,"fn":1395,"description":1396,"org":1522,"tags":1523,"stars":28,"repoUrl":29,"updatedAt":1401},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1524,1525],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},{"slug":1403,"name":1403,"fn":1404,"description":1405,"org":1527,"tags":1528,"stars":28,"repoUrl":29,"updatedAt":1411},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1529,1530,1531],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":23,"slug":24,"type":17},{"slug":1413,"name":1413,"fn":1414,"description":1415,"org":1533,"tags":1534,"stars":28,"repoUrl":29,"updatedAt":1423},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1535,1536,1537],{"name":20,"slug":21,"type":17},{"name":23,"slug":24,"type":17},{"name":1421,"slug":1422,"type":17},{"slug":1425,"name":1425,"fn":1426,"description":1427,"org":1539,"tags":1540,"stars":28,"repoUrl":29,"updatedAt":1432},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1541,1542],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"slug":1434,"name":1434,"fn":1435,"description":1436,"org":1544,"tags":1545,"stars":28,"repoUrl":29,"updatedAt":1445},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1546,1547,1548,1549],{"name":20,"slug":21,"type":17},{"name":10,"slug":9,"type":17},{"name":1442,"slug":1443,"type":17},{"name":23,"slug":24,"type":17},860]