Wrike MCP Server

Wrike MCP Server

Complete MCP server for Wrike project management with 70+ tools and 20 interactive React apps, enabling task, project, and workflow management via natural language.

Category
Visit Server

README

Wrike MCP Server

Complete Model Context Protocol (MCP) server for Wrike project management platform with 70+ tools and 20 interactive React apps.

Features

šŸ› ļø 70+ MCP Tools

Comprehensive coverage of the Wrike API v4:

Tasks (9 tools)

  • wrike_list_tasks - List tasks with filters (folder, status, assignee, dates)
  • wrike_get_task - Get task details by ID
  • wrike_create_task - Create new task
  • wrike_update_task - Update task properties
  • wrike_delete_task - Delete task
  • wrike_search_tasks - Search tasks by title/description
  • wrike_add_dependency - Add task dependency
  • wrike_get_dependencies - Get task dependencies
  • wrike_remove_dependency - Remove task dependency

Folders & Projects (8 tools)

  • wrike_list_folders - List all folders/projects
  • wrike_get_folder - Get folder details
  • wrike_create_folder - Create new folder
  • wrike_create_project - Create new project
  • wrike_update_folder - Update folder/project
  • wrike_delete_folder - Delete folder
  • wrike_copy_folder - Copy folder with options
  • wrike_get_folder_tree - Get folder tree structure

Comments (5 tools)

  • wrike_list_comments - List comments on task/folder
  • wrike_get_comment - Get comment details
  • wrike_create_comment - Create new comment
  • wrike_update_comment - Update comment
  • wrike_delete_comment - Delete comment

Attachments (7 tools)

  • wrike_list_attachments - List attachments
  • wrike_get_attachment - Get attachment details
  • wrike_download_attachment - Get download URL
  • wrike_get_attachment_preview - Get preview URL
  • wrike_get_attachment_url - Get public URL
  • wrike_update_attachment - Update attachment name
  • wrike_delete_attachment - Delete attachment

Time Tracking (6 tools)

  • wrike_list_timelogs - List time logs with filters
  • wrike_get_timelog - Get timelog details
  • wrike_create_timelog - Create time entry
  • wrike_update_timelog - Update time entry
  • wrike_delete_timelog - Delete time entry
  • wrike_list_timelog_categories - List time categories

Contacts & Users (3 tools)

  • wrike_list_contacts - List all contacts/users
  • wrike_get_contact - Get contact details
  • wrike_update_contact - Update contact

Spaces (5 tools)

  • wrike_list_spaces - List all spaces
  • wrike_get_space - Get space details
  • wrike_create_space - Create new space
  • wrike_update_space - Update space
  • wrike_delete_space - Delete space

Groups (5 tools)

  • wrike_list_groups - List all groups
  • wrike_get_group - Get group details
  • wrike_create_group - Create new group
  • wrike_update_group - Update group
  • wrike_delete_group - Delete group

Workflows & Custom Statuses (10 tools)

  • wrike_list_workflows - List all workflows
  • wrike_get_workflow - Get workflow details
  • wrike_create_workflow - Create custom workflow
  • wrike_update_workflow - Update workflow
  • wrike_list_custom_statuses - List custom statuses
  • wrike_get_custom_status - Get custom status
  • wrike_create_custom_status - Create custom status
  • wrike_update_custom_status - Update custom status
  • wrike_delete_custom_status - Delete custom status

Custom Fields (5 tools)

  • wrike_list_custom_fields - List custom field definitions
  • wrike_get_custom_field - Get custom field details
  • wrike_create_custom_field - Create custom field
  • wrike_update_custom_field - Update custom field
  • wrike_delete_custom_field - Delete custom field

Approvals (6 tools)

  • wrike_list_approvals - List approvals with filters
  • wrike_get_approval - Get approval details
  • wrike_create_approval - Create new approval
  • wrike_update_approval - Update approval
  • wrike_delete_approval - Delete approval
  • wrike_submit_approval_decision - Submit approve/reject decision

Webhooks (5 tools)

  • wrike_list_webhooks - List all webhooks
  • wrike_get_webhook - Get webhook details
  • wrike_create_webhook - Create new webhook
  • wrike_update_webhook - Update webhook
  • wrike_delete_webhook - Delete webhook

Work Schedules, Export, Audit & More (10 tools)

  • wrike_list_work_schedules - List work schedules
  • wrike_get_work_schedule - Get work schedule details
  • wrike_start_data_export - Start data export job
  • wrike_get_data_export_status - Get export status
  • wrike_get_audit_log - Get audit log entries
  • wrike_list_blueprints - List blueprints/templates
  • wrike_get_blueprint - Get blueprint details
  • wrike_launch_blueprint - Launch blueprint to create project
  • wrike_get_account - Get account information
  • wrike_get_version - Get API version
  • wrike_list_invitations - List pending invitations
  • wrike_invite_user - Invite user to account
  • wrike_delete_invitation - Cancel invitation
  • wrike_list_colors - List available colors
  • wrike_query_ids - Convert permalinks to IDs

šŸŽØ 20 Interactive React Apps

All apps built with React + Vite, client-side interactivity, and graceful degradation:

  1. task-dashboard - Task overview with status breakdown and filters
  2. task-detail - Full task detail view with edit capabilities
  3. task-board - Kanban board with drag-drop
  4. project-dashboard - Project overview with health status
  5. project-detail - Detailed project view with timeline
  6. folder-tree - Interactive folder hierarchy browser
  7. gantt-view - Gantt chart visualization for tasks
  8. time-tracker - Time tracking interface
  9. time-report - Time log reports and analytics
  10. comment-thread - Comment conversation view
  11. attachment-gallery - Attachment preview gallery
  12. team-workload - Team capacity and workload view
  13. workflow-editor - Custom workflow designer
  14. custom-fields-manager - Custom fields configuration
  15. approval-dashboard - Approval status overview
  16. space-overview - Space management dashboard
  17. blueprint-gallery - Template/blueprint browser
  18. audit-log-viewer - Audit log explorer
  19. search-results - Advanced search results view
  20. analytics-dashboard - Project analytics and reporting

Installation

npm install @mcpengine/wrike

Configuration

Environment Variables

WRIKE_API_TOKEN=your_wrike_api_token_here

Get Wrike API Token

  1. Log in to your Wrike account
  2. Go to Settings → Apps & Integrations → API
  3. Click "Create token"
  4. Copy the generated token
  5. Add to your environment variables

MCP Settings (Claude Desktop)

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "wrike": {
      "command": "node",
      "args": ["/path/to/node_modules/@mcpengine/wrike/dist/main.js"],
      "env": {
        "WRIKE_API_TOKEN": "your_token_here"
      }
    }
  }
}

Usage

With Claude Desktop

Once configured, Claude can:

  • Create and manage tasks, projects, folders
  • Track time across projects
  • Manage comments and attachments
  • Configure workflows and custom fields
  • Submit and track approvals
  • Export data and view audit logs
  • Browse and launch project templates
  • And much more!

Example prompts:

  • "Show me all high-priority tasks due this week"
  • "Create a new project called 'Website Redesign' with tasks for design, development, and testing"
  • "Log 3 hours on task X for yesterday"
  • "Show the folder tree for Space Y"
  • "What approvals are pending?"

Programmatic Usage

import { WrikeClient } from '@mcpengine/wrike';

const client = new WrikeClient(process.env.WRIKE_API_TOKEN!);

// List tasks
const tasks = await client.get('/tasks', {
  status: 'Active',
  importance: 'High',
});

// Create task
const newTask = await client.post('/folders/FOLDER_ID/tasks', {
  title: 'New Task',
  description: 'Task description',
  importance: 'High',
});

// Update task
const updated = await client.put('/tasks/TASK_ID', {
  status: 'Completed',
});

Architecture

src/
ā”œā”€ā”€ server.ts              # MCP server setup
ā”œā”€ā”€ main.ts                # Entry point
ā”œā”€ā”€ clients/
│   └── wrike.ts           # Wrike API client (auth, rate limiting, pagination)
ā”œā”€ā”€ tools/                 # MCP tool definitions
│   ā”œā”€ā”€ tasks-tools.ts
│   ā”œā”€ā”€ folders-tools.ts
│   ā”œā”€ā”€ comments-tools.ts
│   ā”œā”€ā”€ attachments-tools.ts
│   ā”œā”€ā”€ timelogs-tools.ts
│   ā”œā”€ā”€ contacts-tools.ts
│   ā”œā”€ā”€ spaces-tools.ts
│   ā”œā”€ā”€ groups-tools.ts
│   ā”œā”€ā”€ workflows-tools.ts
│   ā”œā”€ā”€ customfields-tools.ts
│   ā”œā”€ā”€ approvals-tools.ts
│   ā”œā”€ā”€ webhooks-tools.ts
│   └── misc-tools.ts
ā”œā”€ā”€ types/
│   └── index.ts           # TypeScript type definitions
└── ui/
    └── react-app/         # React apps (20 apps)

API Client Features

  • Authentication: Bearer token authentication
  • Rate Limiting: Automatic rate limit detection and retry
  • Error Handling: Comprehensive error mapping
  • Pagination: Helper methods for paginated responses
  • Batch Operations: Efficient batch requests
  • Type Safety: Full TypeScript type definitions

Development

# Install dependencies
npm install

# Build
npm run build

# Build with apps
npm run build:apps

# Development mode
npm run dev

# Run tests
npm test

Requirements

  • Node.js 18+
  • Wrike account with API access
  • Valid Wrike API token

License

MIT

Support

  • GitHub Issues: [Report bugs or request features]
  • Documentation: Wrike API Docs

Related

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured