feat(productivity): add wrike as project tracker integration (#1)#1
feat(productivity): add wrike as project tracker integration (#1)#1jrfk wants to merge 1 commit intogroove-x:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Adds Wrike as a supported project tracker option for the productivity plugin, updating user-facing docs and the plugin’s default MCP server configuration.
Changes:
- Mention Wrike in
/startand/updatecommand documentation as a supported task source. - Update connector documentation to list Wrike as an included project tracker server.
- Add a Wrike MCP server entry to
productivity/.mcp.json.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| productivity/commands/update.md | Adds Wrike to project tracker examples in the update workflow docs. |
| productivity/commands/start.md | Adds Wrike to examples of supported task apps during bootstrap. |
| productivity/README.md | Lists Wrike among included MCP connections for project trackers. |
| productivity/CONNECTORS.md | Moves Wrike into the “Included servers” list for project trackers. |
| productivity/.mcp.json | Adds a Wrike MCP server configuration entry. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "url": "https://mcp.atlassian.com/v1/mcp" | ||
| }, | ||
| "wrike": { | ||
| "type": "http", |
There was a problem hiding this comment.
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).
| "type": "http", | |
| "type": "sse", |
There was a problem hiding this comment.
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.
What
productivity に wrikeを追加
Why
NO_NEWS