[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-phantombuster-automation":3,"mdc--jy9kdn-key":53,"related-org-composio-phantombuster-automation":924,"related-repo-composio-phantombuster-automation":1071},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":27,"repoUrl":28,"updatedAt":29,"license":30,"forks":31,"topics":32,"repo":48,"sourceUrl":51,"mdContent":52},"phantombuster-automation","PhantomBuster Automation","automate lead generation with PhantomBuster","Automate lead generation, web scraping, and social media data extraction workflows through PhantomBuster's cloud platform 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,21,24],{"name":15,"slug":16,"type":17},"Automation","automation","tag",{"name":19,"slug":20,"type":17},"Web Scraping","web-scraping",{"name":22,"slug":23,"type":17},"Sales","sales",{"name":25,"slug":26,"type":17},"Lead Enrichment","lead-enrichment",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:48:48.327626",null,7603,[33,34,35,16,36,37,38,9,39,40,41,42,43,44,45,46,47],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","mcp","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":28,"stars":27,"forks":31,"topics":49,"description":50},[33,34,35,16,36,37,38,9,39,40,41,42,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\u002Fphantombuster-automation","---\nname: PhantomBuster Automation\ndescription: \"Automate lead generation, web scraping, and social media data extraction workflows through PhantomBuster's cloud platform via Composio\"\nrequires:\n  mcp:\n    - rube\n---\n\n# PhantomBuster Automation\n\nAutomate cloud-based data extraction and lead generation -- manage agents and scripts, monitor organization resources and usage, track container execution, and solve captcha challenges -- all orchestrated through the Composio MCP integration.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fphantombuster](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fphantombuster)\n\n---\n\n## Setup\n\n1. Connect your PhantomBuster 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 `PHANTOMBUSTER_*` tools become available for execution\n\n---\n\n## Core Workflows\n\n### 1. List All Agents\nFetch every agent associated with your account or organization to inventory automation workflows.\n\n**Tool:** `PHANTOMBUSTER_GET_AGENTS_FETCH_ALL`\n\n```\nNo parameters required -- returns all agents with IDs and metadata.\nAuthenticate your API key first.\n```\n\nUse agent IDs from this response when fetching containers or monitoring specific automations.\n\n---\n\n### 2. List All Scripts\nRetrieve all scripts available under your account (without code bodies) for script management.\n\n**Tool:** `PHANTOMBUSTER_GET_SCRIPTS_FETCH_ALL`\n\n```\nNo parameters required -- returns script metadata without source code.\n```\n\n---\n\n### 3. Monitor Organization Resources & Quotas\nCheck your organization's current resource usage and quota limits to plan automation capacity.\n\n**Tool:** `PHANTOMBUSTER_GET_ORGS_FETCH_RESOURCES`\n\n```\nNo parameters required -- returns resource allocation and current usage metrics.\n```\n\n---\n\n### 4. Retrieve Agent Containers\nFetch all execution containers for a specific agent to monitor run history and status.\n\n**Tool:** `PHANTOMBUSTER_GET_CONTAINERS_FETCH_ALL`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `agentId` | string | Yes | Agent ID from `PHANTOMBUSTER_GET_AGENTS_FETCH_ALL` |\n\n---\n\n### 5. Export Agent Usage Report\nDownload a CSV report of all agents' run statistics for your organization.\n\n**Tool:** `PHANTOMBUSTER_GET_ORGS_EXPORT_AGENT_USAGE`\n\n```\nReturns a downloadable CSV with comprehensive agent execution statistics.\n```\n\n---\n\n### 6. Solve hCaptcha Challenges\nObtain a valid hCaptcha token for automated form submissions or scraping flows that require captcha solving.\n\n**Tool:** `PHANTOMBUSTER_POST_HCAPTCHA`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `siteKey` | string | Yes | Public site key of the hCaptcha widget |\n| `pageUrl` | string | Yes | Full URL of the page with the captcha |\n| `proxy` | string | No | Proxy URL (e.g., `http:\u002F\u002Fuser:pass@host:port`) |\n| `userAgent` | string | No | Custom User-Agent string to simulate |\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Details |\n|---------|---------|\n| **Agent ID required for containers** | `PHANTOMBUSTER_GET_CONTAINERS_FETCH_ALL` requires a valid `agentId` -- always resolve it first via `PHANTOMBUSTER_GET_AGENTS_FETCH_ALL` |\n| **API key authentication** | All PhantomBuster tools require a valid API key connection -- verify authentication before calling any tools |\n| **Script bodies not included** | `PHANTOMBUSTER_GET_SCRIPTS_FETCH_ALL` returns metadata only, not source code |\n| **Organization scope** | Resource and usage tools operate at the organization level tied to your API key -- ensure the correct org is targeted |\n| **Branch operations** | `PHANTOMBUSTER_GET_BRANCHES_FETCH_ALL` and `PHANTOMBUSTER_GET_BRANCHES_DIFF` are for advanced script versioning -- use them to assess staging vs. release changes before deployment |\n\n---\n\n## Quick Reference\n\n| Tool Slug | Purpose |\n|-----------|---------|\n| `PHANTOMBUSTER_GET_AGENTS_FETCH_ALL` | List all agents in your account |\n| `PHANTOMBUSTER_GET_SCRIPTS_FETCH_ALL` | List all scripts (metadata only) |\n| `PHANTOMBUSTER_GET_ORGS_FETCH_RESOURCES` | Check organization resource usage and quotas |\n| `PHANTOMBUSTER_GET_CONTAINERS_FETCH_ALL` | Get all containers for a specific agent |\n| `PHANTOMBUSTER_GET_ORGS_EXPORT_AGENT_USAGE` | Export agent usage as CSV |\n| `PHANTOMBUSTER_POST_HCAPTCHA` | Solve hCaptcha challenges for automation |\n| `PHANTOMBUSTER_GET_ORGS_FETCH` | Fetch organization details |\n| `PHANTOMBUSTER_GET_ORGS_FETCH_AGENT_GROUPS` | Get agent groups and ordering |\n| `PHANTOMBUSTER_GET_BRANCHES_FETCH_ALL` | List all script branches |\n| `PHANTOMBUSTER_GET_BRANCHES_DIFF` | Compare staging vs. release branches |\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,266,269,275,280,294,364,367,373,378,392,401,404,410,415,429,566,569,575,713,716,722,906,909],{"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 cloud-based data extraction and lead generation -- manage agents and scripts, monitor organization resources and usage, track container execution, and solve captcha challenges -- 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\u002Fphantombuster",[89],"nofollow",[91],{"type":66,"value":92},"composio.dev\u002Ftoolkits\u002Fphantombuster",{"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 PhantomBuster 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},"PHANTOMBUSTER_*",{"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-list-all-agents",[153],{"type":66,"value":154},"1. List All Agents",{"type":61,"tag":68,"props":156,"children":157},{},[158],{"type":66,"value":159},"Fetch every agent associated with your account or organization to inventory automation workflows.",{"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},"PHANTOMBUSTER_GET_AGENTS_FETCH_ALL",{"type":61,"tag":176,"props":177,"children":181},"pre",{"className":178,"code":180,"language":66},[179],"language-text","No parameters required -- returns all agents with IDs and metadata.\nAuthenticate your API key first.\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},"Use agent IDs from this response when fetching containers or monitoring specific automations.",{"type":61,"tag":94,"props":193,"children":194},{},[],{"type":61,"tag":149,"props":196,"children":198},{"id":197},"_2-list-all-scripts",[199],{"type":66,"value":200},"2. List All Scripts",{"type":61,"tag":68,"props":202,"children":203},{},[204],{"type":66,"value":205},"Retrieve all scripts available under your account (without code bodies) for script management.",{"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},"PHANTOMBUSTER_GET_SCRIPTS_FETCH_ALL",{"type":61,"tag":176,"props":221,"children":224},{"className":222,"code":223,"language":66},[179],"No parameters required -- returns script metadata without source code.\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-monitor-organization-resources-quotas",[236],{"type":66,"value":237},"3. Monitor Organization Resources & Quotas",{"type":61,"tag":68,"props":239,"children":240},{},[241],{"type":66,"value":242},"Check your organization's current resource usage and quota limits to plan automation capacity.",{"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},"PHANTOMBUSTER_GET_ORGS_FETCH_RESOURCES",{"type":61,"tag":176,"props":258,"children":261},{"className":259,"code":260,"language":66},[179],"No parameters required -- returns resource allocation and current usage metrics.\n",[262],{"type":61,"tag":115,"props":263,"children":264},{"__ignoreMap":184},[265],{"type":66,"value":260},{"type":61,"tag":94,"props":267,"children":268},{},[],{"type":61,"tag":149,"props":270,"children":272},{"id":271},"_4-retrieve-agent-containers",[273],{"type":66,"value":274},"4. Retrieve Agent Containers",{"type":61,"tag":68,"props":276,"children":277},{},[278],{"type":66,"value":279},"Fetch all execution containers for a specific agent to monitor run history and status.",{"type":61,"tag":68,"props":281,"children":282},{},[283,287,288],{"type":61,"tag":77,"props":284,"children":285},{},[286],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":289,"children":291},{"className":290},[],[292],{"type":66,"value":293},"PHANTOMBUSTER_GET_CONTAINERS_FETCH_ALL",{"type":61,"tag":295,"props":296,"children":297},"table",{},[298,327],{"type":61,"tag":299,"props":300,"children":301},"thead",{},[302],{"type":61,"tag":303,"props":304,"children":305},"tr",{},[306,312,317,322],{"type":61,"tag":307,"props":308,"children":309},"th",{},[310],{"type":66,"value":311},"Parameter",{"type":61,"tag":307,"props":313,"children":314},{},[315],{"type":66,"value":316},"Type",{"type":61,"tag":307,"props":318,"children":319},{},[320],{"type":66,"value":321},"Required",{"type":61,"tag":307,"props":323,"children":324},{},[325],{"type":66,"value":326},"Description",{"type":61,"tag":328,"props":329,"children":330},"tbody",{},[331],{"type":61,"tag":303,"props":332,"children":333},{},[334,344,349,354],{"type":61,"tag":335,"props":336,"children":337},"td",{},[338],{"type":61,"tag":115,"props":339,"children":341},{"className":340},[],[342],{"type":66,"value":343},"agentId",{"type":61,"tag":335,"props":345,"children":346},{},[347],{"type":66,"value":348},"string",{"type":61,"tag":335,"props":350,"children":351},{},[352],{"type":66,"value":353},"Yes",{"type":61,"tag":335,"props":355,"children":356},{},[357,359],{"type":66,"value":358},"Agent ID from ",{"type":61,"tag":115,"props":360,"children":362},{"className":361},[],[363],{"type":66,"value":174},{"type":61,"tag":94,"props":365,"children":366},{},[],{"type":61,"tag":149,"props":368,"children":370},{"id":369},"_5-export-agent-usage-report",[371],{"type":66,"value":372},"5. Export Agent Usage Report",{"type":61,"tag":68,"props":374,"children":375},{},[376],{"type":66,"value":377},"Download a CSV report of all agents' run statistics for your organization.",{"type":61,"tag":68,"props":379,"children":380},{},[381,385,386],{"type":61,"tag":77,"props":382,"children":383},{},[384],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":387,"children":389},{"className":388},[],[390],{"type":66,"value":391},"PHANTOMBUSTER_GET_ORGS_EXPORT_AGENT_USAGE",{"type":61,"tag":176,"props":393,"children":396},{"className":394,"code":395,"language":66},[179],"Returns a downloadable CSV with comprehensive agent execution statistics.\n",[397],{"type":61,"tag":115,"props":398,"children":399},{"__ignoreMap":184},[400],{"type":66,"value":395},{"type":61,"tag":94,"props":402,"children":403},{},[],{"type":61,"tag":149,"props":405,"children":407},{"id":406},"_6-solve-hcaptcha-challenges",[408],{"type":66,"value":409},"6. Solve hCaptcha Challenges",{"type":61,"tag":68,"props":411,"children":412},{},[413],{"type":66,"value":414},"Obtain a valid hCaptcha token for automated form submissions or scraping flows that require captcha solving.",{"type":61,"tag":68,"props":416,"children":417},{},[418,422,423],{"type":61,"tag":77,"props":419,"children":420},{},[421],{"type":66,"value":167},{"type":66,"value":83},{"type":61,"tag":115,"props":424,"children":426},{"className":425},[],[427],{"type":66,"value":428},"PHANTOMBUSTER_POST_HCAPTCHA",{"type":61,"tag":295,"props":430,"children":431},{},[432,454],{"type":61,"tag":299,"props":433,"children":434},{},[435],{"type":61,"tag":303,"props":436,"children":437},{},[438,442,446,450],{"type":61,"tag":307,"props":439,"children":440},{},[441],{"type":66,"value":311},{"type":61,"tag":307,"props":443,"children":444},{},[445],{"type":66,"value":316},{"type":61,"tag":307,"props":447,"children":448},{},[449],{"type":66,"value":321},{"type":61,"tag":307,"props":451,"children":452},{},[453],{"type":66,"value":326},{"type":61,"tag":328,"props":455,"children":456},{},[457,482,507,541],{"type":61,"tag":303,"props":458,"children":459},{},[460,469,473,477],{"type":61,"tag":335,"props":461,"children":462},{},[463],{"type":61,"tag":115,"props":464,"children":466},{"className":465},[],[467],{"type":66,"value":468},"siteKey",{"type":61,"tag":335,"props":470,"children":471},{},[472],{"type":66,"value":348},{"type":61,"tag":335,"props":474,"children":475},{},[476],{"type":66,"value":353},{"type":61,"tag":335,"props":478,"children":479},{},[480],{"type":66,"value":481},"Public site key of the hCaptcha widget",{"type":61,"tag":303,"props":483,"children":484},{},[485,494,498,502],{"type":61,"tag":335,"props":486,"children":487},{},[488],{"type":61,"tag":115,"props":489,"children":491},{"className":490},[],[492],{"type":66,"value":493},"pageUrl",{"type":61,"tag":335,"props":495,"children":496},{},[497],{"type":66,"value":348},{"type":61,"tag":335,"props":499,"children":500},{},[501],{"type":66,"value":353},{"type":61,"tag":335,"props":503,"children":504},{},[505],{"type":66,"value":506},"Full URL of the page with the captcha",{"type":61,"tag":303,"props":508,"children":509},{},[510,519,523,528],{"type":61,"tag":335,"props":511,"children":512},{},[513],{"type":61,"tag":115,"props":514,"children":516},{"className":515},[],[517],{"type":66,"value":518},"proxy",{"type":61,"tag":335,"props":520,"children":521},{},[522],{"type":66,"value":348},{"type":61,"tag":335,"props":524,"children":525},{},[526],{"type":66,"value":527},"No",{"type":61,"tag":335,"props":529,"children":530},{},[531,533,539],{"type":66,"value":532},"Proxy URL (e.g., ",{"type":61,"tag":115,"props":534,"children":536},{"className":535},[],[537],{"type":66,"value":538},"http:\u002F\u002Fuser:pass@host:port",{"type":66,"value":540},")",{"type":61,"tag":303,"props":542,"children":543},{},[544,553,557,561],{"type":61,"tag":335,"props":545,"children":546},{},[547],{"type":61,"tag":115,"props":548,"children":550},{"className":549},[],[551],{"type":66,"value":552},"userAgent",{"type":61,"tag":335,"props":554,"children":555},{},[556],{"type":66,"value":348},{"type":61,"tag":335,"props":558,"children":559},{},[560],{"type":66,"value":527},{"type":61,"tag":335,"props":562,"children":563},{},[564],{"type":66,"value":565},"Custom User-Agent string to simulate",{"type":61,"tag":94,"props":567,"children":568},{},[],{"type":61,"tag":98,"props":570,"children":572},{"id":571},"known-pitfalls",[573],{"type":66,"value":574},"Known Pitfalls",{"type":61,"tag":295,"props":576,"children":577},{},[578,594],{"type":61,"tag":299,"props":579,"children":580},{},[581],{"type":61,"tag":303,"props":582,"children":583},{},[584,589],{"type":61,"tag":307,"props":585,"children":586},{},[587],{"type":66,"value":588},"Pitfall",{"type":61,"tag":307,"props":590,"children":591},{},[592],{"type":66,"value":593},"Details",{"type":61,"tag":328,"props":595,"children":596},{},[597,630,646,667,683],{"type":61,"tag":303,"props":598,"children":599},{},[600,608],{"type":61,"tag":335,"props":601,"children":602},{},[603],{"type":61,"tag":77,"props":604,"children":605},{},[606],{"type":66,"value":607},"Agent ID required for containers",{"type":61,"tag":335,"props":609,"children":610},{},[611,616,618,623,625],{"type":61,"tag":115,"props":612,"children":614},{"className":613},[],[615],{"type":66,"value":293},{"type":66,"value":617}," requires a valid ",{"type":61,"tag":115,"props":619,"children":621},{"className":620},[],[622],{"type":66,"value":343},{"type":66,"value":624}," -- always resolve it first via ",{"type":61,"tag":115,"props":626,"children":628},{"className":627},[],[629],{"type":66,"value":174},{"type":61,"tag":303,"props":631,"children":632},{},[633,641],{"type":61,"tag":335,"props":634,"children":635},{},[636],{"type":61,"tag":77,"props":637,"children":638},{},[639],{"type":66,"value":640},"API key authentication",{"type":61,"tag":335,"props":642,"children":643},{},[644],{"type":66,"value":645},"All PhantomBuster tools require a valid API key connection -- verify authentication before calling any tools",{"type":61,"tag":303,"props":647,"children":648},{},[649,657],{"type":61,"tag":335,"props":650,"children":651},{},[652],{"type":61,"tag":77,"props":653,"children":654},{},[655],{"type":66,"value":656},"Script bodies not included",{"type":61,"tag":335,"props":658,"children":659},{},[660,665],{"type":61,"tag":115,"props":661,"children":663},{"className":662},[],[664],{"type":66,"value":219},{"type":66,"value":666}," returns metadata only, not source code",{"type":61,"tag":303,"props":668,"children":669},{},[670,678],{"type":61,"tag":335,"props":671,"children":672},{},[673],{"type":61,"tag":77,"props":674,"children":675},{},[676],{"type":66,"value":677},"Organization scope",{"type":61,"tag":335,"props":679,"children":680},{},[681],{"type":66,"value":682},"Resource and usage tools operate at the organization level tied to your API key -- ensure the correct org is targeted",{"type":61,"tag":303,"props":684,"children":685},{},[686,694],{"type":61,"tag":335,"props":687,"children":688},{},[689],{"type":61,"tag":77,"props":690,"children":691},{},[692],{"type":66,"value":693},"Branch operations",{"type":61,"tag":335,"props":695,"children":696},{},[697,703,705,711],{"type":61,"tag":115,"props":698,"children":700},{"className":699},[],[701],{"type":66,"value":702},"PHANTOMBUSTER_GET_BRANCHES_FETCH_ALL",{"type":66,"value":704}," and ",{"type":61,"tag":115,"props":706,"children":708},{"className":707},[],[709],{"type":66,"value":710},"PHANTOMBUSTER_GET_BRANCHES_DIFF",{"type":66,"value":712}," are for advanced script versioning -- use them to assess staging vs. release changes before deployment",{"type":61,"tag":94,"props":714,"children":715},{},[],{"type":61,"tag":98,"props":717,"children":719},{"id":718},"quick-reference",[720],{"type":66,"value":721},"Quick Reference",{"type":61,"tag":295,"props":723,"children":724},{},[725,741],{"type":61,"tag":299,"props":726,"children":727},{},[728],{"type":61,"tag":303,"props":729,"children":730},{},[731,736],{"type":61,"tag":307,"props":732,"children":733},{},[734],{"type":66,"value":735},"Tool Slug",{"type":61,"tag":307,"props":737,"children":738},{},[739],{"type":66,"value":740},"Purpose",{"type":61,"tag":328,"props":742,"children":743},{},[744,760,776,792,808,824,840,857,874,890],{"type":61,"tag":303,"props":745,"children":746},{},[747,755],{"type":61,"tag":335,"props":748,"children":749},{},[750],{"type":61,"tag":115,"props":751,"children":753},{"className":752},[],[754],{"type":66,"value":174},{"type":61,"tag":335,"props":756,"children":757},{},[758],{"type":66,"value":759},"List all agents in your account",{"type":61,"tag":303,"props":761,"children":762},{},[763,771],{"type":61,"tag":335,"props":764,"children":765},{},[766],{"type":61,"tag":115,"props":767,"children":769},{"className":768},[],[770],{"type":66,"value":219},{"type":61,"tag":335,"props":772,"children":773},{},[774],{"type":66,"value":775},"List all scripts (metadata only)",{"type":61,"tag":303,"props":777,"children":778},{},[779,787],{"type":61,"tag":335,"props":780,"children":781},{},[782],{"type":61,"tag":115,"props":783,"children":785},{"className":784},[],[786],{"type":66,"value":256},{"type":61,"tag":335,"props":788,"children":789},{},[790],{"type":66,"value":791},"Check organization resource usage and quotas",{"type":61,"tag":303,"props":793,"children":794},{},[795,803],{"type":61,"tag":335,"props":796,"children":797},{},[798],{"type":61,"tag":115,"props":799,"children":801},{"className":800},[],[802],{"type":66,"value":293},{"type":61,"tag":335,"props":804,"children":805},{},[806],{"type":66,"value":807},"Get all containers for a specific agent",{"type":61,"tag":303,"props":809,"children":810},{},[811,819],{"type":61,"tag":335,"props":812,"children":813},{},[814],{"type":61,"tag":115,"props":815,"children":817},{"className":816},[],[818],{"type":66,"value":391},{"type":61,"tag":335,"props":820,"children":821},{},[822],{"type":66,"value":823},"Export agent usage as CSV",{"type":61,"tag":303,"props":825,"children":826},{},[827,835],{"type":61,"tag":335,"props":828,"children":829},{},[830],{"type":61,"tag":115,"props":831,"children":833},{"className":832},[],[834],{"type":66,"value":428},{"type":61,"tag":335,"props":836,"children":837},{},[838],{"type":66,"value":839},"Solve hCaptcha challenges for automation",{"type":61,"tag":303,"props":841,"children":842},{},[843,852],{"type":61,"tag":335,"props":844,"children":845},{},[846],{"type":61,"tag":115,"props":847,"children":849},{"className":848},[],[850],{"type":66,"value":851},"PHANTOMBUSTER_GET_ORGS_FETCH",{"type":61,"tag":335,"props":853,"children":854},{},[855],{"type":66,"value":856},"Fetch organization details",{"type":61,"tag":303,"props":858,"children":859},{},[860,869],{"type":61,"tag":335,"props":861,"children":862},{},[863],{"type":61,"tag":115,"props":864,"children":866},{"className":865},[],[867],{"type":66,"value":868},"PHANTOMBUSTER_GET_ORGS_FETCH_AGENT_GROUPS",{"type":61,"tag":335,"props":870,"children":871},{},[872],{"type":66,"value":873},"Get agent groups and ordering",{"type":61,"tag":303,"props":875,"children":876},{},[877,885],{"type":61,"tag":335,"props":878,"children":879},{},[880],{"type":61,"tag":115,"props":881,"children":883},{"className":882},[],[884],{"type":66,"value":702},{"type":61,"tag":335,"props":886,"children":887},{},[888],{"type":66,"value":889},"List all script branches",{"type":61,"tag":303,"props":891,"children":892},{},[893,901],{"type":61,"tag":335,"props":894,"children":895},{},[896],{"type":61,"tag":115,"props":897,"children":899},{"className":898},[],[900],{"type":66,"value":710},{"type":61,"tag":335,"props":902,"children":903},{},[904],{"type":66,"value":905},"Compare staging vs. release branches",{"type":61,"tag":94,"props":907,"children":908},{},[],{"type":61,"tag":68,"props":910,"children":911},{},[912],{"type":61,"tag":913,"props":914,"children":915},"em",{},[916,918],{"type":66,"value":917},"Powered by ",{"type":61,"tag":85,"props":919,"children":922},{"href":920,"rel":921},"https:\u002F\u002Fcomposio.dev",[89],[923],{"type":66,"value":10},{"items":925,"total":1070},[926,941,957,966,976,988,997,1010,1024,1037,1050,1060],{"slug":927,"name":928,"fn":929,"description":930,"org":931,"tags":932,"stars":27,"repoUrl":28,"updatedAt":940},"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},[933,934,935,937],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":936,"slug":42,"type":17},"MCP",{"name":938,"slug":939,"type":17},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":942,"name":943,"fn":944,"description":945,"org":946,"tags":947,"stars":27,"repoUrl":28,"updatedAt":956},"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},[948,949,952,953],{"name":15,"slug":16,"type":17},{"name":950,"slug":951,"type":17},"Communications","communications",{"name":936,"slug":42,"type":17},{"name":954,"slug":955,"type":17},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":958,"name":958,"fn":959,"description":960,"org":961,"tags":962,"stars":27,"repoUrl":28,"updatedAt":965},"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},[963,964],{"name":15,"slug":16,"type":17},{"name":936,"slug":42,"type":17},"2026-07-12T08:09:55.453088",{"slug":967,"name":967,"fn":968,"description":969,"org":970,"tags":971,"stars":27,"repoUrl":28,"updatedAt":975},"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},[972,973,974],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":936,"slug":42,"type":17},"2026-07-15T05:45:16.470309",{"slug":977,"name":977,"fn":978,"description":979,"org":980,"tags":981,"stars":27,"repoUrl":28,"updatedAt":987},"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},[982,983,984],{"name":15,"slug":16,"type":17},{"name":936,"slug":42,"type":17},{"name":985,"slug":986,"type":17},"Security","security","2026-07-15T05:56:20.013366",{"slug":989,"name":989,"fn":990,"description":991,"org":992,"tags":993,"stars":27,"repoUrl":28,"updatedAt":996},"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},[994,995],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},"2026-07-15T05:54:50.762889",{"slug":998,"name":998,"fn":999,"description":1000,"org":1001,"tags":1002,"stars":27,"repoUrl":28,"updatedAt":1009},"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},[1003,1004,1005,1008],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":1006,"slug":1007,"type":17},"CRM","crm",{"name":936,"slug":42,"type":17},"2026-07-15T05:48:43.429136",{"slug":1011,"name":1011,"fn":1012,"description":1013,"org":1014,"tags":1015,"stars":27,"repoUrl":28,"updatedAt":1023},"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},[1016,1017,1020],{"name":15,"slug":16,"type":17},{"name":1018,"slug":1019,"type":17},"Documents","documents",{"name":1021,"slug":1022,"type":17},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1025,"name":1025,"fn":1026,"description":1027,"org":1028,"tags":1029,"stars":27,"repoUrl":28,"updatedAt":1036},"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},[1030,1031,1032,1033],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":936,"slug":42,"type":17},{"name":1034,"slug":1035,"type":17},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1038,"name":1038,"fn":1039,"description":1040,"org":1041,"tags":1042,"stars":27,"repoUrl":28,"updatedAt":1049},"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},[1043,1044,1045,1046],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":1006,"slug":1007,"type":17},{"name":1047,"slug":1048,"type":17},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1051,"name":1051,"fn":1052,"description":1053,"org":1054,"tags":1055,"stars":27,"repoUrl":28,"updatedAt":1059},"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},[1056,1057,1058],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":936,"slug":42,"type":17},"2026-07-15T05:47:51.742515",{"slug":1061,"name":1061,"fn":1062,"description":1063,"org":1064,"tags":1065,"stars":27,"repoUrl":28,"updatedAt":1069},"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},[1066,1067,1068],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":936,"slug":42,"type":17},"2026-07-15T05:45:05.303254",863,{"items":1072,"total":1116},[1073,1080,1087,1092,1098,1104,1109],{"slug":927,"name":928,"fn":929,"description":930,"org":1074,"tags":1075,"stars":27,"repoUrl":28,"updatedAt":940},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1076,1077,1078,1079],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":936,"slug":42,"type":17},{"name":938,"slug":939,"type":17},{"slug":942,"name":943,"fn":944,"description":945,"org":1081,"tags":1082,"stars":27,"repoUrl":28,"updatedAt":956},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1083,1084,1085,1086],{"name":15,"slug":16,"type":17},{"name":950,"slug":951,"type":17},{"name":936,"slug":42,"type":17},{"name":954,"slug":955,"type":17},{"slug":958,"name":958,"fn":959,"description":960,"org":1088,"tags":1089,"stars":27,"repoUrl":28,"updatedAt":965},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1090,1091],{"name":15,"slug":16,"type":17},{"name":936,"slug":42,"type":17},{"slug":967,"name":967,"fn":968,"description":969,"org":1093,"tags":1094,"stars":27,"repoUrl":28,"updatedAt":975},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1095,1096,1097],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":936,"slug":42,"type":17},{"slug":977,"name":977,"fn":978,"description":979,"org":1099,"tags":1100,"stars":27,"repoUrl":28,"updatedAt":987},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1101,1102,1103],{"name":15,"slug":16,"type":17},{"name":936,"slug":42,"type":17},{"name":985,"slug":986,"type":17},{"slug":989,"name":989,"fn":990,"description":991,"org":1105,"tags":1106,"stars":27,"repoUrl":28,"updatedAt":996},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1107,1108],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"slug":998,"name":998,"fn":999,"description":1000,"org":1110,"tags":1111,"stars":27,"repoUrl":28,"updatedAt":1009},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1112,1113,1114,1115],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":1006,"slug":1007,"type":17},{"name":936,"slug":42,"type":17},860]