mcp-sunsama 0.2.1 → 0.2.2

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.
@@ -15,7 +15,8 @@
15
15
  "mcp__sequential-thinking__sequentialthinking",
16
16
  "Bash(gh auth:*)",
17
17
  "Bash(npm ls:*)",
18
- "Bash(cat:*)"
18
+ "Bash(cat:*)",
19
+ "Bash(grep:*)"
19
20
  ],
20
21
  "deny": []
21
22
  },
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # mcp-sunsama
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 177cf46: Fix ES module import error in sunsama-api dependency by patching directory imports to include explicit file extensions
8
+
3
9
  ## 0.2.1
4
10
 
5
11
  ### Patch Changes
package/bun.lock CHANGED
@@ -7,7 +7,7 @@
7
7
  "@types/papaparse": "^5.3.16",
8
8
  "fastmcp": "2.1.3",
9
9
  "papaparse": "^5.5.3",
10
- "sunsama-api": "0.2.0",
10
+ "sunsama-api": "0.2.1",
11
11
  "zod": "3.24.4",
12
12
  },
13
13
  "devDependencies": {
@@ -428,7 +428,7 @@
428
428
 
429
429
  "strtok3": ["strtok3@10.3.1", "", { "dependencies": { "@tokenizer/token": "^0.3.0" } }, "sha512-3JWEZM6mfix/GCJBBUrkA8p2Id2pBkyTkVCJKto55w080QBKZ+8R171fGrbiSp+yMO/u6F8/yUh7K4V9K+YCnw=="],
430
430
 
431
- "sunsama-api": ["sunsama-api@0.2.0", "", { "dependencies": { "graphql": "^16.11.0", "graphql-tag": "^2.12.6", "tough-cookie": "^5.1.2", "tslib": "^2.8.1" } }, "sha512-QwSF1TkyX4iiO/giv0vt33UFiRB4/dFUCI1cZz/0SRFYXEz0fHWcka62+B6ruDWf4Z2MUwS6Q09QY0uYHg2lWg=="],
431
+ "sunsama-api": ["sunsama-api@0.2.1", "", { "dependencies": { "graphql": "^16.11.0", "graphql-tag": "^2.12.6", "tough-cookie": "^5.1.2", "tslib": "^2.8.1" } }, "sha512-G98BCWEZ+Du4NGyEL9SxMqwmEfmZrgKHwTdL3nAVUua4X9toTI9NIiN+zlUFKqN+n+iaF5Xsz0g3lAC/axZcDQ=="],
432
432
 
433
433
  "term-size": ["term-size@2.2.1", "", {}, "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="],
434
434
 
package/dist/main.js CHANGED
@@ -16,7 +16,7 @@ if (transportConfig.transportType === "stdio") {
16
16
  }
17
17
  const server = new FastMCP({
18
18
  name: "Sunsama API Server",
19
- version: "0.2.1",
19
+ version: "0.2.2",
20
20
  instructions: `
21
21
  This MCP server provides access to the Sunsama API for task and project management.
22
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-sunsama",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "MCP server for Sunsama API integration",
5
5
  "type": "module",
6
6
  "private": false,
@@ -25,7 +25,7 @@
25
25
  "@types/papaparse": "^5.3.16",
26
26
  "fastmcp": "2.1.3",
27
27
  "papaparse": "^5.5.3",
28
- "sunsama-api": "0.2.0",
28
+ "sunsama-api": "0.2.1",
29
29
  "zod": "3.24.4"
30
30
  },
31
31
  "devDependencies": {
package/src/main.ts CHANGED
@@ -30,7 +30,7 @@ if (transportConfig.transportType === "stdio") {
30
30
 
31
31
  const server = new FastMCP({
32
32
  name: "Sunsama API Server",
33
- version: "0.2.1",
33
+ version: "0.2.2",
34
34
  instructions: `
35
35
  This MCP server provides access to the Sunsama API for task and project management.
36
36