Work management platform
## Wrike MCP Server: Enterprise Work Management The **Wrike MCP Server** integrates Wrike's enterprise work management platform into Google Antigravity, enabling developers to manage complex projects, workflows, and team collaboration through AI-assisted productivity. ### Why Wrike MCP? - **Enterprise Scale**: Designed for large teams and complex projects - **Custom Workflows**: Define custom statuses and workflows - **Resource Management**: Track time, capacity, and allocation - **Cross-Tagging**: Organize tasks across multiple projects - **Approvals**: Built-in approval workflows ### Key Features #### 1. Task and Project Management ```javascript // Create task const task = await wrike.createTask({ folderId: "folder_123", title: "Implement API rate limiting", description: "Add rate limiting to all public endpoints", status: "Active", importance: "High", dates: { start: "2024-12-16", due: "2024-12-20" }, responsibles: ["user_456"] }); // Update task status await wrike.updateTask({ id: task.id, status: "Completed" }); // Add subtask await wrike.createTask({ parentId: task.id, title: "Write rate limiting tests" }); // Get tasks in folder const tasks = await wrike.getTasks({ folderId: "folder_123", status: "Active" }); ``` #### 2. Folders and Workflows ```javascript // Create folder const folder = await wrike.createFolder({ parentId: "parent_folder_id", title: "Q1 2025 Projects" }); // Get folder tree const tree = await wrike.getFolderTree(); // Create custom workflow const workflow = await wrike.createWorkflow({ name: "Development Process", statuses: [ { name: "Backlog", color: "Gray" }, { name: "In Progress", color: "Blue" }, { name: "Review", color: "Yellow" }, { name: "Done", color: "Green" } ] }); // Log time await wrike.createTimelog({ taskId: task.id, hours: 4, trackedDate: "2024-12-16", comment: "Implemented core rate limiting logic" }); ``` ### Configuration ```json { "mcpServers": { "wrike": { "command": "npx", "args": ["-y", "@anthropic/mcp-wrike"], "env": { "WRIKE_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Enterprise Projects**: Manage complex, cross-team projects at scale. **Time Tracking**: Log time and track team productivity. **Custom Workflows**: Define development workflows that match your process. The Wrike MCP Server brings enterprise work management to your development workflow.
{
"mcpServers": {
"wrike": {
"mcpServers": {
"wrike": {
"env": {
"WRIKE_ACCESS_TOKEN": "your-access-token"
},
"args": [
"-y",
"wrike-mcp-server"
],
"command": "npx"
}
}
}
}
}