Loading...
Loading...
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.
npx skill4agent add davepoon/buildwithclaude wrike-automationRUBE_MANAGE_CONNECTIONSwrikeRUBE_SEARCH_TOOLShttps://rube.app/mcpRUBE_SEARCH_TOOLSRUBE_MANAGE_CONNECTIONSwrikeWRIKE_GET_FOLDERSWRIKE_GET_ALL_CUSTOM_FIELDSWRIKE_CREATE_TASKWRIKE_MODIFY_TASKfolderIdtitledescriptionresponsiblesstatusimportancecustomFieldsdatesWRIKE_GET_FOLDERSWRIKE_CREATE_FOLDERWRIKE_MODIFY_FOLDERWRIKE_LIST_SUBFOLDERS_BY_FOLDER_IDWRIKE_DELETE_FOLDERfolderIdtitledescriptioncustomItemTypeIdsharedsprojectWRIKE_FETCH_ALL_TASKSWRIKE_GET_TASK_BY_IDstatusdueDatefieldspage_sizetaskIdresolve_user_namesWRIKE_LIST_TASK_BLUEPRINTSWRIKE_LIST_SPACE_TASK_BLUEPRINTSWRIKE_LAUNCH_TASK_BLUEPRINT_ASYNCtask_blueprint_idtitleparent_idsuper_task_idreschedule_datereschedule_modeentry_limitWRIKE_GET_SPACEWRIKE_GET_CONTACTSWRIKE_CREATE_INVITATIONWRIKE_DELETE_SPACEspaceIdemailrolefirstNamelastName1. Call WRIKE_GET_FOLDERS (optionally with project=true for projects only)
2. Navigate folder tree to find target
3. Extract folder id (e.g., 'IEAGKVLFK4IHGQOI')
4. Use as folderId in task/folder creation1. Call WRIKE_GET_ALL_CUSTOM_FIELDS to get definitions
2. Find field by name, extract id and type
3. Format value according to type (text, dropdown, number, date)
4. Include as {id: 'FIELD_ID', value: 'VALUE'} in customFields array1. Call WRIKE_GET_CONTACTS to find user IDs
2. Use user IDs in responsibles array when creating tasks
3. Or use addResponsibles/removeResponsibles when modifying tasks| Task | Tool Slug | Key Params |
|---|---|---|
| Create task | WRIKE_CREATE_TASK | folderId, title, responsibles, status |
| Modify task | WRIKE_MODIFY_TASK | taskId, title, status, addResponsibles |
| Get task by ID | WRIKE_GET_TASK_BY_ID | taskId |
| Fetch all tasks | WRIKE_FETCH_ALL_TASKS | status, dueDate, page_size |
| Get folders | WRIKE_GET_FOLDERS | project, descendants |
| Create folder | WRIKE_CREATE_FOLDER | folderId, title |
| Modify folder | WRIKE_MODIFY_FOLDER | folderId, title, addShareds |
| Delete folder | WRIKE_DELETE_FOLDER | folderId |
| List subfolders | WRIKE_LIST_SUBFOLDERS_BY_FOLDER_ID | folderId |
| Get custom fields | WRIKE_GET_ALL_CUSTOM_FIELDS | (none) |
| List blueprints | WRIKE_LIST_TASK_BLUEPRINTS | limit, page_size |
| Launch blueprint | WRIKE_LAUNCH_TASK_BLUEPRINT_ASYNC | task_blueprint_id, title, parent_id |
| Get space | WRIKE_GET_SPACE | spaceId |
| Delete space | WRIKE_DELETE_SPACE | spaceId |
| Get contacts | WRIKE_GET_CONTACTS | (none) |
| Invite user | WRIKE_CREATE_INVITATION | email, role |