lunaarc-mcp 1.1.1 → 1.1.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 CHANGED
@@ -26,7 +26,7 @@ npm install -g lunaarc-mcp
26
26
 
27
27
  | Variable | Description | Required |
28
28
  |----------|-------------|----------|
29
- | `LUNAARC_API_URL` | LunaArc MCP API endpoint (e.g., `https://mcp.lunaarc.de/v1`) | Yes |
29
+ | `LUNAARC_API_URL` | LunaArc MCP API endpoint (e.g., `https://mcp.lunaarc.de/mcp/v1`) | Yes |
30
30
  | `LUNAARC_TOKEN` | Your project token (starts with `lac_prj_`) | Yes |
31
31
 
32
32
  Get your token from: **LunaArc Project Settings > Integrations > MCP Integration**
@@ -42,7 +42,7 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
42
42
  "command": "npx",
43
43
  "args": ["-y", "lunaarc-mcp"],
44
44
  "env": {
45
- "LUNAARC_API_URL": "https://mcp.lunaarc.de/v1",
45
+ "LUNAARC_API_URL": "https://mcp.lunaarc.de/mcp/v1",
46
46
  "LUNAARC_TOKEN": "lac_prj_your_token_here"
47
47
  }
48
48
  }
@@ -61,7 +61,7 @@ Add to your Claude Code settings (`.claude/settings.json` or global config):
61
61
  "command": "npx",
62
62
  "args": ["-y", "lunaarc-mcp"],
63
63
  "env": {
64
- "LUNAARC_API_URL": "https://mcp.lunaarc.de/v1",
64
+ "LUNAARC_API_URL": "https://mcp.lunaarc.de/mcp/v1",
65
65
  "LUNAARC_TOKEN": "lac_prj_your_token_here"
66
66
  }
67
67
  }
@@ -52,6 +52,10 @@ interface AIAssignedCard {
52
52
  due_date: string | null;
53
53
  created_at: string;
54
54
  updated_at: string;
55
+ agent_id: string | null;
56
+ agent_name: string | null;
57
+ agent_slug: string | null;
58
+ agent_content: string | null;
55
59
  }
56
60
  interface KanbanColumn {
57
61
  id: string;
@@ -385,8 +385,16 @@ To get cards assigned to you, a team member needs to assign a card to this AI to
385
385
  if (card.due_date) {
386
386
  output += `\n**Due:** ${new Date(card.due_date).toLocaleDateString()}`;
387
387
  }
388
+ // Show assigned AI Agent if present
389
+ if (card.agent_name) {
390
+ output += `\n**AI Agent:** ${card.agent_name}`;
391
+ }
388
392
  output += '\n\n';
389
393
  output += card.description || '_No description_';
394
+ // Include agent context if present
395
+ if (card.agent_content) {
396
+ output += `\n\n---\n\n### Agent Instructions\n\n${card.agent_content}`;
397
+ }
390
398
  output += '\n\n---\n\n';
391
399
  }
392
400
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lunaarc-mcp",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "MCP Server for LunaArc - Access Wiki and Kanban from AI assistants",
5
5
  "main": "dist/server.js",
6
6
  "bin": {