Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions productivity/.mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
"type": "http",
"url": "https://mcp.atlassian.com/v1/mcp"
},
"wrike": {
"type": "http",
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrike MCP entry uses a URL ending in /sse but config sets type to http. In this repo, SSE endpoints are configured with type: "sse" (see cowork-plugin-management/.../customized-mcp.json), so this looks like a misconfiguration that will prevent the Wrike connector from working. Update either the type to sse or change the URL to the correct HTTP /mcp endpoint (whichever matches Wrike's MCP server).

Suggested change
"type": "http",
"type": "sse",

Copilot uses AI. Check for mistakes.
Copy link
Member Author

@jrfk jrfk Feb 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The official website has the following description. What would be the appropriate way to set it up?

Step 2: Configure Your AI Assistant
For Cursor/Claude Desktop Users

Add the following JSON to your configuration file:

{
  "mcpServers": {
    "wrike": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://www.wrike.com/app/mcp/sse",
        "--header",
        "Authorization:${AUTH_HEADER}"
      ],
      "env": {
        "AUTH_HEADER": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
Replace YOUR_API_TOKEN with your actual Wrike API token.

If your Wrike account is located in the EU datacenter, use https://app-eu.wrike.com/app/mcp/sse as your connection url instead of https://www.wrike.com/app/mcp/sse.

"url": "https://www.wrike.com/app/mcp/sse"
},
"ms365": {
"type": "http",
"url": "https://microsoft365.mcp.claude.com/mcp"
Expand Down
2 changes: 1 addition & 1 deletion productivity/CONNECTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ Plugins are **tool-agnostic** — they describe workflows in terms of categories
| Email | `~~email` | Microsoft 365 | — |
| Calendar | `~~calendar` | Microsoft 365 | — |
| Knowledge base | `~~knowledge base` | Notion | Confluence, Guru, Coda |
| Project tracker | `~~project tracker` | Asana, Linear, Atlassian (Jira/Confluence), monday.com, ClickUp | Shortcut, Basecamp, Wrike |
| Project tracker | `~~project tracker` | Asana, Linear, Atlassian (Jira/Confluence), monday.com, ClickUp, Wrike | Shortcut, Basecamp |
| Office suite | `~~office suite` | Microsoft 365 | — |
2 changes: 1 addition & 1 deletion productivity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Connect your communication and project management tools for the best experience.
- Chat (Slack) for team context and message scanning
- Email and calendar (Microsoft 365) for action item discovery
- Knowledge base (Notion) for reference documents
- Project tracker (Asana, Linear, Atlassian, monday.com, ClickUp) for task syncing
- Project tracker (Asana, Linear, Atlassian, monday.com, ClickUp, Wrike) for task syncing
- Office suite (Microsoft 365) for documents

**Additional options:**
Expand Down
2 changes: 1 addition & 1 deletion productivity/commands/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The best source of workplace language is the user's actual task list. Real tasks
```
Where do you keep your todos or task list? This could be:
- A local file (e.g., TASKS.md, todo.txt)
- An app (e.g. Asana, Linear, Jira, Notion, Todoist)
- An app (e.g. Asana, Linear, Jira, Notion, Wrike, Todoist)
- A notes file

I'll use your tasks to learn your workplace shorthand.
Expand Down
4 changes: 2 additions & 2 deletions productivity/commands/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Read `TASKS.md` and `memory/` directory. If they don't exist, suggest `/producti
### 2. Sync Tasks from External Sources

Check for available task sources:
- **Project tracker** (e.g. Asana, Linear, Jira) (if MCP available)
- **Project tracker** (e.g. Asana, Linear, Jira, Wrike) (if MCP available)
- **GitHub Issues** (if in a repo): `gh issue list --assignee=@me`

If no sources are available, skip to Step 3.
Expand Down Expand Up @@ -95,7 +95,7 @@ Tasks often contain richer context than memory. Extract and update:

```
Update complete:
- Tasks: +3 from project tracker (e.g. Asana), 1 completed, 2 triaged
- Tasks: +3 from project tracker (e.g. Asana, Wrike), 1 completed, 2 triaged
- Memory: 2 gaps filled, 1 project enriched
- All tasks decoded ✓
```
Expand Down