mcpengine/servers/trello/package.json
Jake Shore 6d342a1545 Phase 1: Tier 2 complete — 13 servers upgraded to gold standard architecture
- READMEs added: asana, close, freshdesk, google-console, gusto, square
- main.ts + server.ts (lazy loading): activecampaign, clickup, klaviyo, mailchimp, pipedrive, trello, touchbistro, closebot, close, google-console
- All 13 compile with 0 TSC errors
2026-02-14 05:47:14 -05:00

50 lines
1.1 KiB
JSON

{
"name": "mcp-server-trello",
"version": "1.0.0",
"description": "MCP server for Trello API integration with comprehensive tools and React apps",
"type": "module",
"main": "dist/main.js",
"bin": {
"mcp-server-trello": "./dist/main.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && chmod +x dist/main.js",
"dev": "tsx src/main.ts",
"start": "node dist/main.js",
"clean": "rm -rf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"trello",
"api",
"productivity",
"project-management"
],
"author": "MCPEngine",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@modelcontextprotocol/ext-apps": "^0.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vite": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}