mcp-sunsama 0.2.0 → 0.2.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.
@@ -13,7 +13,9 @@
13
13
  "Bash(bun run build:*)",
14
14
  "Bash(npm pack:*)",
15
15
  "mcp__sequential-thinking__sequentialthinking",
16
- "Bash(gh auth:*)"
16
+ "Bash(gh auth:*)",
17
+ "Bash(npm ls:*)",
18
+ "Bash(cat:*)"
17
19
  ],
18
20
  "deny": []
19
21
  },
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # mcp-sunsama
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix binary execution issue by adding Node.js shebang line
8
+
9
+ The npm package binary was failing to execute because it was missing the `#!/usr/bin/env node` shebang line at the top of the file. This caused the shell to treat the JavaScript file as a shell script instead of passing it to Node.js for execution.
10
+
3
11
  ## 0.2.0
4
12
 
5
13
  ### Minor Changes
package/dist/main.d.ts CHANGED
@@ -1,2 +1,3 @@
1
+ #!/usr/bin/env node
1
2
  export {};
2
3
  //# sourceMappingURL=main.d.ts.map
package/dist/main.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { FastMCP } from "fastmcp";
2
3
  import { httpStreamAuthenticator } from "./auth/http.js";
3
4
  import { initializeStdioAuth } from "./auth/stdio.js";
@@ -15,7 +16,7 @@ if (transportConfig.transportType === "stdio") {
15
16
  }
16
17
  const server = new FastMCP({
17
18
  name: "Sunsama API Server",
18
- version: "0.2.0",
19
+ version: "0.2.1",
19
20
  instructions: `
20
21
  This MCP server provides access to the Sunsama API for task and project management.
21
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-sunsama",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "MCP server for Sunsama API integration",
5
5
  "type": "module",
6
6
  "private": false,
package/src/main.ts CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { FastMCP } from "fastmcp";
2
3
  import type { CreateTaskOptions } from "sunsama-api";
3
4
  import { httpStreamAuthenticator } from "./auth/http.js";
@@ -29,7 +30,7 @@ if (transportConfig.transportType === "stdio") {
29
30
 
30
31
  const server = new FastMCP({
31
32
  name: "Sunsama API Server",
32
- version: "0.2.0",
33
+ version: "0.2.1",
33
34
  instructions: `
34
35
  This MCP server provides access to the Sunsama API for task and project management.
35
36