{
	"name": "@kaneo/mcp",
	"version": "0.1.11",
	"mcpName": "io.github.usekaneo/kaneo",
	"description": "Official MCP (Model Context Protocol) server for Kaneo, the open source project management platform: manage tasks, projects, and labels from Claude, Cursor, and other MCP clients",
	"license": "MIT",
	"author": "Kaneo (https://kaneo.app)",
	"homepage": "https://kaneo.app/docs/core/integrations/mcp",
	"repository": {
		"type": "git",
		"url": "https://github.com/usekaneo/kaneo/",
		"directory": "packages/mcp"
	},
	"type": "module",
	"bin": {
		"kaneo-mcp": "dist/index.js"
	},
	"exports": {
		".": {
			"import": "./dist/server.js",
			"types": "./dist/server.d.ts"
		}
	},
	"publishConfig": {
		"access": "public"
	},
	"files": [
		"dist",
		"README.md",
		"LICENSE"
	],
	"keywords": [
		"mcp",
		"mcp-server",
		"model-context-protocol",
		"kaneo",
		"kaneo-mcp",
		"project-management",
		"tasks",
		"kanban",
		"ai-agents",
		"claude",
		"stdio"
	],
	"scripts": {
		"build": "tsc -p tsconfig.json",
		"prepublishOnly": "pnpm run build",
		"dev": "tsx watch src/index.ts",
		"lint": "biome check --write .",
		"start": "node dist/index.js",
		"test": "vitest run --config vitest.config.ts",
		"test:watch": "vitest --config vitest.config.ts"
	},
	"dependencies": {
		"@modelcontextprotocol/sdk": "^1.30.0",
		"open": "^11.0.0",
		"prompts": "^2.4.2",
		"zod": "^4.4.3"
	},
	"devDependencies": {
		"@kaneo/typescript-config": "workspace:*",
		"@types/node": "^26.1.2",
		"@types/prompts": "^2.4.9",
		"tsx": "^4.23.9",
		"typescript": "^7.0.2",
		"vitest": "^4.1.10"
	}
}
