kaneo-mcp 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,105 @@
1
+ # Kaneo MCP Server
2
+
3
+ A Model Context Protocol (MCP) server for [Kaneo](https://kaneo.app) - the open-source project management platform.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g kaneo-mcp
9
+ ```
10
+
11
+ Or run directly with npx:
12
+ ```bash
13
+ npx kaneo-mcp
14
+ ```
15
+
16
+ ## Configuration
17
+
18
+ Configure via environment variables:
19
+
20
+ | Variable | Description | Default |
21
+ |----------|-------------|---------|
22
+ | `KANEO_BASE_URL` | Kaneo API base URL | `http://localhost:1337` |
23
+ | `KANEO_TOKEN` | Your Kaneo API token | **required** |
24
+
25
+ ### Getting an API Token
26
+
27
+ 1. Log in to your Kaneo instance
28
+ 2. Go to Settings > Account > API Keys
29
+ 3. Create a new API key
30
+
31
+ ## Usage
32
+
33
+ ```bash
34
+ KANEO_BASE_URL=https://your-kaneo.com KANEO_TOKEN=your-token kaneo-mcp
35
+ ```
36
+
37
+ ### Claude Code Integration
38
+
39
+ Add to your Claude Code MCP settings:
40
+
41
+ ```json
42
+ {
43
+ "mcpServers": {
44
+ "kaneo": {
45
+ "command": "npx",
46
+ "args": ["kaneo-mcp"],
47
+ "env": {
48
+ "KANEO_BASE_URL": "https://your-kaneo.com",
49
+ "KANEO_TOKEN": "your-token"
50
+ }
51
+ }
52
+ }
53
+ }
54
+ ```
55
+
56
+ ## Available Tools
57
+
58
+ ### Projects
59
+ - `list_projects` - List projects in a workspace
60
+ - `create_project` - Create a new project
61
+ - `get_project` - Get project details
62
+ - `update_project` - Update a project
63
+ - `delete_project` - Delete a project
64
+ - `archive_project` / `unarchive_project` - Archive management
65
+
66
+ ### Tasks
67
+ - `list_tasks` - List tasks with filters (status, priority, assignee)
68
+ - `create_task` - Create a new task
69
+ - `get_task` - Get task details
70
+ - `update_task` - Update task fields
71
+ - `delete_task` - Delete a task
72
+ - `update_task_status` / `update_task_priority` / `update_task_assignee` / `update_task_due_date` - Partial updates
73
+ - `move_task` - Move task to another project
74
+
75
+ ### Columns
76
+ - `list_columns` - List columns in a project
77
+ - `create_column` / `update_column` / `delete_column` - Column CRUD
78
+ - `reorder_columns` - Reorder columns
79
+
80
+ ### Comments
81
+ - `list_comments` / `create_comment` / `update_comment` / `delete_comment`
82
+
83
+ ### Labels
84
+ - `list_labels_for_task` / `list_workspace_labels`
85
+ - `create_label` / `get_label` / `update_label` / `delete_label`
86
+ - `attach_label_to_task` / `detach_label_from_task`
87
+
88
+ ### Time Entries
89
+ - `list_time_entries` / `get_time_entry` / `create_time_entry` / `update_time_entry`
90
+
91
+ ### Task Relations
92
+ - `list_task_relations` / `create_task_relation` / `delete_task_relation`
93
+
94
+ ### Notifications
95
+ - `list_notifications` / `mark_notification_read` / `mark_all_notifications_read` / `clear_all_notifications`
96
+
97
+ ### Other
98
+ - `list_workspace_members` - List workspace members
99
+ - `search` - Global search across tasks, projects, comments
100
+ - `list_activities` - Task activity history
101
+ - `list_pending_invitations` / `get_invitation` - Invitation management
102
+
103
+ ## License
104
+
105
+ MIT
package/bin/kaneo-mcp.js CHANGED
@@ -1,2 +1,14 @@
1
1
  #!/usr/bin/env node
2
- import "../dist/index.js";
2
+ import { createRequire } from "module";
3
+ import { fileURLToPath } from "url";
4
+ import { dirname, join } from "path";
5
+ import { execSync } from "child_process";
6
+
7
+ const scriptPath = fileURLToPath(import.meta.url);
8
+ const scriptDir = dirname(scriptPath);
9
+ const distPath = join(scriptDir, "..", "dist", "index.js");
10
+
11
+ const require = createRequire(import.meta.url);
12
+ const modulePath = require.resolve(distPath);
13
+
14
+ execSync(`node ${modulePath}`, { stdio: "inherit" });
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "kaneo-mcp",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "bin": {
8
- "kaneo-mcp": "./dist/index.js"
8
+ "kaneo-mcp": "dist/index.js"
9
9
  },
10
10
  "exports": {
11
11
  ".": {