- API Client: Full Wrike API v4 with OAuth2/token auth, pagination, error handling - 60+ Tools across 14 categories: tasks, folders, projects, spaces, contacts, comments, timelogs, attachments, workflows, custom-fields, approvals, groups, invitations, webhooks - 22 React Apps: task-dashboard, task-detail, task-grid, task-board, project-dashboard, project-detail, project-grid, folder-tree, space-overview, gantt-view, time-dashboard, time-entries, member-workload, comment-thread, approval-manager, workflow-editor, custom-fields-manager, attachment-gallery, search-results, activity-feed, sprint-board, reports-dashboard - All apps: dark theme, client-side state, standalone directories - Full TypeScript types for all Wrike API entities - Comprehensive README with setup instructions Replaces single-file stub with production-ready MCP server
37 lines
761 B
JSON
37 lines
761 B
JSON
{
|
|
"name": "wrike-mcp-server",
|
|
"version": "1.0.0",
|
|
"description": "Complete Wrike MCP server with 60+ tools and 22 React apps",
|
|
"main": "dist/main.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"wrike-mcp-server": "./dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"dev": "tsc && node dist/main.js",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"wrike",
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"ai",
|
|
"project-management"
|
|
],
|
|
"author": "MCP Engine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.6",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|