Automate Wrike project management via Rube MCP (Composio): create tasks/folders, manage projects, assign work, and track progress. Always search tools first for current schemas.
Add this skill
npx mdskills install sickn33/wrike-automationComprehensive Wrike automation guide with clear workflows, parameter details, and pitfall coverage
1---2name: wrike-automation3description: "Automate Wrike project management via Rube MCP (Composio): create tasks/folders, manage projects, assign work, and track progress. Always search tools first for current schemas."4requires:5 mcp: [rube]6---78# Wrike Automation via Rube MCP910Automate Wrike project management operations through Composio's Wrike toolkit via Rube MCP.1112## Prerequisites1314- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)15- Active Wrike connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `wrike`16- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas1718## Setup1920**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.2122231. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds242. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `wrike`253. If connection is not ACTIVE, follow the returned auth link to complete Wrike OAuth264. Confirm connection status shows ACTIVE before running any workflows2728## Core Workflows2930### 1. Create and Manage Tasks3132**When to use**: User wants to create, assign, or update tasks in Wrike3334**Tool sequence**:351. `WRIKE_GET_FOLDERS` - Find the target folder/project [Prerequisite]362. `WRIKE_GET_ALL_CUSTOM_FIELDS` - Get custom field IDs if needed [Optional]373. `WRIKE_CREATE_TASK` - Create a new task [Required]384. `WRIKE_MODIFY_TASK` - Update task properties [Optional]3940**Key parameters**:41- `folderId`: Parent folder ID where the task will be created42- `title`: Task title43- `description`: Task description (supports HTML)44- `responsibles`: Array of user IDs to assign45- `status`: 'Active', 'Completed', 'Deferred', 'Cancelled'46- `importance`: 'High', 'Normal', 'Low'47- `customFields`: Array of {id, value} objects48- `dates`: Object with type, start, due, duration4950**Pitfalls**:51- folderId is required; tasks must belong to a folder52- responsibles requires Wrike user IDs, not emails or names53- Custom field IDs must be obtained from GET_ALL_CUSTOM_FIELDS54- priorityBefore and priorityAfter are mutually exclusive55- Status field may not be available on Team plan56- dates.start and dates.due use 'YYYY-MM-DD' format5758### 2. Manage Folders and Projects5960**When to use**: User wants to create, modify, or organize folders and projects6162**Tool sequence**:631. `WRIKE_GET_FOLDERS` - List existing folders [Required]642. `WRIKE_CREATE_FOLDER` - Create a new folder/project [Optional]653. `WRIKE_MODIFY_FOLDER` - Update folder properties [Optional]664. `WRIKE_LIST_SUBFOLDERS_BY_FOLDER_ID` - List subfolders [Optional]675. `WRIKE_DELETE_FOLDER` - Delete a folder permanently [Optional]6869**Key parameters**:70- `folderId`: Parent folder ID for creation; target folder ID for modification71- `title`: Folder name72- `description`: Folder description73- `customItemTypeId`: Set to create as a project instead of a folder74- `shareds`: Array of user IDs or emails to share with75- `project`: Filter for projects (true) or folders (false) in GET_FOLDERS7677**Pitfalls**:78- DELETE_FOLDER is permanent and removes ALL contents (tasks, subfolders, documents)79- Cannot modify rootFolderId or recycleBinId as parents80- Folder creation auto-shares with the creator81- customItemTypeId converts a folder into a project82- GET_FOLDERS with descendants=true returns folder tree (may be large)8384### 3. Retrieve and Track Tasks8586**When to use**: User wants to find tasks, check status, or monitor progress8788**Tool sequence**:891. `WRIKE_FETCH_ALL_TASKS` - List tasks with optional filters [Required]902. `WRIKE_GET_TASK_BY_ID` - Get detailed info for a specific task [Optional]9192**Key parameters**:93- `status`: Filter by task status ('Active', 'Completed', etc.)94- `dueDate`: Filter by due date range (start/end/equal)95- `fields`: Additional response fields to include96- `page_size`: Results per page (1-100)97- `taskId`: Specific task ID for detailed retrieval98- `resolve_user_names`: Auto-resolve user IDs to names (default true)99100**Pitfalls**:101- FETCH_ALL_TASKS paginates at max 100 items per page102- dueDate filter supports 'equal', 'start', and 'end' fields103- Date format: 'yyyy-MM-dd' or 'yyyy-MM-ddTHH:mm:ss'104- GET_TASK_BY_ID returns read-only detailed information105- customFields are returned by default for single task queries106107### 4. Launch Task Blueprints108109**When to use**: User wants to create tasks from predefined templates110111**Tool sequence**:1121. `WRIKE_LIST_TASK_BLUEPRINTS` - List available blueprints [Prerequisite]1132. `WRIKE_LIST_SPACE_TASK_BLUEPRINTS` - List blueprints in a specific space [Alternative]1143. `WRIKE_LAUNCH_TASK_BLUEPRINT_ASYNC` - Launch a blueprint [Required]115116**Key parameters**:117- `task_blueprint_id`: ID of the blueprint to launch118- `title`: Title for the root task119- `parent_id`: Parent folder/project ID (OR super_task_id)120- `super_task_id`: Parent task ID (OR parent_id)121- `reschedule_date`: Target date for task rescheduling122- `reschedule_mode`: 'RescheduleStartDate' or 'RescheduleFinishDate'123- `entry_limit`: Max tasks to copy (1-250)124125**Pitfalls**:126- Either parent_id or super_task_id is required, not both127- Blueprint launch is asynchronous; tasks may take time to appear128- reschedule_date requires reschedule_mode to be set129- entry_limit caps at 250 tasks/folders per blueprint launch130- copy_descriptions defaults to false; set true to include task descriptions131132### 5. Manage Workspace and Members133134**When to use**: User wants to manage spaces, members, or invitations135136**Tool sequence**:1371. `WRIKE_GET_SPACE` - Get space details [Optional]1382. `WRIKE_GET_CONTACTS` - List workspace contacts/members [Optional]1393. `WRIKE_CREATE_INVITATION` - Invite a user to the workspace [Optional]1404. `WRIKE_DELETE_SPACE` - Delete a space permanently [Optional]141142**Key parameters**:143- `spaceId`: Space identifier144- `email`: Email for invitation145- `role`: User role ('Admin', 'Regular User', 'External User')146- `firstName`/`lastName`: Invitee name147148**Pitfalls**:149- DELETE_SPACE is irreversible and removes all space contents150- userTypeId and role/external are mutually exclusive in invitations151- Custom email subjects/messages require a paid Wrike plan152- GET_CONTACTS returns workspace-level contacts, not task-specific assignments153154## Common Patterns155156### Folder ID Resolution157158```1591. Call WRIKE_GET_FOLDERS (optionally with project=true for projects only)1602. Navigate folder tree to find target1613. Extract folder id (e.g., 'IEAGKVLFK4IHGQOI')1624. Use as folderId in task/folder creation163```164165### Custom Field Setup166167```1681. Call WRIKE_GET_ALL_CUSTOM_FIELDS to get definitions1692. Find field by name, extract id and type1703. Format value according to type (text, dropdown, number, date)1714. Include as {id: 'FIELD_ID', value: 'VALUE'} in customFields array172```173174### Task Assignment175176```1771. Call WRIKE_GET_CONTACTS to find user IDs1782. Use user IDs in responsibles array when creating tasks1793. Or use addResponsibles/removeResponsibles when modifying tasks180```181182### Pagination183184- FETCH_ALL_TASKS: Use page_size (max 100) and check for more results185- GET_FOLDERS: Use nextPageToken when descendants=false and pageSize is set186- LIST_TASK_BLUEPRINTS: Use next_page_token and page_size (default 100)187188## Known Pitfalls189190**ID Formats**:191- Wrike IDs are opaque alphanumeric strings (e.g., 'IEAGTXR7I4IHGABC')192- Task IDs, folder IDs, space IDs, and user IDs all use this format193- Custom field IDs follow the same pattern194- Never guess IDs; always resolve from list/search operations195196**Permissions**:197- Operations depend on user role and sharing settings198- Shared folders/tasks are visible only to shared users199- Admin operations require appropriate role200- Some features (custom statuses, billing types) are plan-dependent201202**Deletion Safety**:203- DELETE_FOLDER removes ALL contents permanently204- DELETE_SPACE removes the entire space and contents205- Consider using MODIFY_FOLDER to move to recycle bin instead206- Restore from recycle bin is possible via MODIFY_FOLDER with restore=true207208**Date Handling**:209- Dates use 'yyyy-MM-dd' format210- DateTime uses 'yyyy-MM-ddTHH:mm:ssZ' or with timezone offset211- Task dates include type ('Planned', 'Actual'), start, due, duration212- Duration is in minutes213214## Quick Reference215216| Task | Tool Slug | Key Params |217|------|-----------|------------|218| Create task | WRIKE_CREATE_TASK | folderId, title, responsibles, status |219| Modify task | WRIKE_MODIFY_TASK | taskId, title, status, addResponsibles |220| Get task by ID | WRIKE_GET_TASK_BY_ID | taskId |221| Fetch all tasks | WRIKE_FETCH_ALL_TASKS | status, dueDate, page_size |222| Get folders | WRIKE_GET_FOLDERS | project, descendants |223| Create folder | WRIKE_CREATE_FOLDER | folderId, title |224| Modify folder | WRIKE_MODIFY_FOLDER | folderId, title, addShareds |225| Delete folder | WRIKE_DELETE_FOLDER | folderId |226| List subfolders | WRIKE_LIST_SUBFOLDERS_BY_FOLDER_ID | folderId |227| Get custom fields | WRIKE_GET_ALL_CUSTOM_FIELDS | (none) |228| List blueprints | WRIKE_LIST_TASK_BLUEPRINTS | limit, page_size |229| Launch blueprint | WRIKE_LAUNCH_TASK_BLUEPRINT_ASYNC | task_blueprint_id, title, parent_id |230| Get space | WRIKE_GET_SPACE | spaceId |231| Delete space | WRIKE_DELETE_SPACE | spaceId |232| Get contacts | WRIKE_GET_CONTACTS | (none) |233| Invite user | WRIKE_CREATE_INVITATION | email, role |234
Full transparency — inspect the skill content before installing.