feat: kan mcp server (#485)

* feat: kan mcp server initial attempt

* fix: card was missing options and added default fallbacks

* fix: label creating with better information for colors and presets
This commit is contained in:
Morfixx
2026-06-10 11:10:22 +03:00
committed by GitHub
parent 4f3b49716d
commit 81b67df9e3
14 changed files with 1517 additions and 55 deletions

29
packages/mcp/package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "@kan/mcp",
"version": "0.1.0",
"description": "MCP server for Kan — control workspaces, boards, lists, and cards via AI",
"type": "module",
"bin": {
"kan-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --noEmit false --declaration false --emitDeclarationOnly false --outDir dist",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"zod": "catalog:"
},
"devDependencies": {
"@kan/tsconfig": "workspace:*",
"typescript": "catalog:"
}
}