mcpengine/servers/wrike/package.json
Jake Shore 5833a090c0 wrike: Complete MCP server with 88 tools and 22 React apps
- Full Wrike API v4 client with auth, rate limiting, pagination
- 88 MCP tools across 13 categories (tasks, projects, folders, spaces, comments, attachments, timelogs, contacts, groups, workflows, custom fields, approvals, webhooks, and more)
- 22 interactive React apps (task board, Gantt view, project dashboard, space overview, team workload, time tracker, approval manager, custom fields manager, workflow editor, and more)
- Complete TypeScript types for all Wrike entities
- Comprehensive README with usage examples
- Both stdio and HTTP server modes
- Successfully compiles with TypeScript
2026-02-12 17:28:25 -05:00

40 lines
845 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",
"axios": "^1.7.9",
"form-data": "^4.0.1"
},
"devDependencies": {
"@types/node": "^22.10.6",
"@types/form-data": "^2.5.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
}
}