@taiga-ai/mcp-server 0.2.3-dev.127 → 0.2.3-dev.130

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ai/mcp-server",
3
- "version": "0.2.3-dev.127",
3
+ "version": "0.2.3-dev.130",
4
4
  "description": "MCP server for Taiga -- gives AI assistants access to documents, skills, and projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -23,14 +23,14 @@
23
23
  "test": "vitest run"
24
24
  },
25
25
  "dependencies": {
26
- "@modelcontextprotocol/sdk": "^1.29.0",
27
- "zod": "^3.25.76"
26
+ "@modelcontextprotocol/sdk": "^1.30.0",
27
+ "zod": "^4.4.3"
28
28
  },
29
29
  "devDependencies": {
30
- "@types/node": "^22.19.17",
31
- "rolldown": "^1.0.3",
30
+ "@types/node": "^22.20.1",
31
+ "rolldown": "^1.2.3",
32
32
  "typescript": "^7.0.2",
33
- "vitest": "^4.1.8"
33
+ "vitest": "^4.1.10"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
@@ -336,7 +336,7 @@ describe('MCP server integration', () => {
336
336
  });
337
337
 
338
338
  it('should send PUT when updating a team document draft', async () => {
339
- const teamId = '00000000-0000-0000-0000-000000000001';
339
+ const teamId = '0199a1b2-c3d4-7e5f-8a9b-0c1d2e3f4a5b';
340
340
  const docType = 'domain_context';
341
341
  const updated = { type: docType, name: 'Domain Context' };
342
342
 
@@ -474,7 +474,7 @@ describe('MCP server integration', () => {
474
474
  });
475
475
 
476
476
  it('should send PATCH when updating a skill', async () => {
477
- const skillId = '00000000-0000-0000-0000-000000000001';
477
+ const skillId = '0199a1b2-c3d4-7e5f-8a9b-0c1d2e3f4a5c';
478
478
  const updated = { id: skillId, name: 'Updated Skill', content: '# Updated' };
479
479
 
480
480
  const { client, fetchSpy } = await bootMcpPair({