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.
Files changed (2) hide show
  1. package/README.md +22 -0
  2. 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
+ [![npm](https://img.shields.io/npm/v/vikunja-mcp-ng.svg)](https://www.npmjs.com/package/vikunja-mcp-ng)
5
6
  [![license: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
6
7
  [![node: 20+](https://img.shields.io/badge/node-20%2B-brightgreen.svg)](package.json)
7
8
  [![MCP](https://img.shields.io/badge/MCP-server-purple.svg)](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.0",
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",