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