vikunja-mcp-ng 0.4.0 → 0.4.1
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 +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Give your AI assistant real hands on your Vikunja instance** — create and triage tasks, manage projects and Kanban boards, assign teammates, and more, through natural conversation.
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/vikunja-mcp-ng)
|
|
5
6
|
[](LICENSE)
|
|
6
7
|
[](package.json)
|
|
7
8
|
[](https://modelcontextprotocol.io)
|
|
@@ -28,6 +29,27 @@ More end-to-end scenarios — daily triage, team sharing, project planning, stay
|
|
|
28
29
|
|
|
29
30
|
## Quick Start
|
|
30
31
|
|
|
32
|
+
### From npm (recommended)
|
|
33
|
+
|
|
34
|
+
No install step needed — point your MCP client at `npx`:
|
|
35
|
+
|
|
36
|
+
```json
|
|
37
|
+
{
|
|
38
|
+
"mcpServers": {
|
|
39
|
+
"vikunja": {
|
|
40
|
+
"command": "npx",
|
|
41
|
+
"args": ["-y", "vikunja-mcp-ng"],
|
|
42
|
+
"env": {
|
|
43
|
+
"VIKUNJA_URL": "https://your-vikunja-instance.com/api/v1",
|
|
44
|
+
"VIKUNJA_API_TOKEN": "your-api-token"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Or install globally (`npm install -g vikunja-mcp-ng`) and use `"command": "vikunja-mcp-ng"` with no args.
|
|
52
|
+
|
|
31
53
|
### From source
|
|
32
54
|
|
|
33
55
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vikunja-mcp-ng",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Model Context Protocol server for Vikunja task management - direct-REST, composite-first tools, enterprise-grade security and reliability",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|