Wrike

Manage projects, tasks, and workflows via Wrike API. Create tasks, update statuses, and track work.

modbender 21bbd6e 777 B Updated 12 repo stars

File contents

Wrike

Project management platform.

Environment

export WRIKE_ACCESS_TOKEN="xxxxxxxxxx"

List Folders

curl "https://www.wrike.com/api/v4/folders" -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN"

Create Task

curl -X POST "https://www.wrike.com/api/v4/folders/{folderId}/tasks" \
  -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title": "New Task", "status": "Active"}'

List Tasks

curl "https://www.wrike.com/api/v4/tasks" -H "Authorization: Bearer $WRIKE_ACCESS_TOKEN"

Links

modbender/skill-library-mcp/tree/main/data/wrike commit 21bbd6eec7

Frequently asked questions

npx skillmds add modbender/wrike