mcp-sunsama 0.15.3 → 0.15.4
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/CHANGELOG.md +6 -0
- package/dist/main.js +1 -1
- package/package.json +2 -1
- package/src/main.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# mcp-sunsama
|
|
2
2
|
|
|
3
|
+
## 0.15.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- eb40ca5: Fix executable permissions on bin file by adding postbuild script. Adds chmod +x to ensure dist/main.js is executable after build, resolving 'Permission denied' error when running via npx.
|
|
8
|
+
|
|
3
9
|
## 0.15.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/main.js
CHANGED
|
@@ -9,7 +9,7 @@ import { apiDocumentationResource } from "./resources/index.js";
|
|
|
9
9
|
(async () => {
|
|
10
10
|
const server = new McpServer({
|
|
11
11
|
name: "Sunsama API Server",
|
|
12
|
-
version: "0.15.
|
|
12
|
+
version: "0.15.4",
|
|
13
13
|
instructions: `
|
|
14
14
|
This MCP server provides access to the Sunsama API for task and project management.
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-sunsama",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.4",
|
|
4
4
|
"description": "MCP server for Sunsama API integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"typecheck": "bunx tsc --noEmit",
|
|
20
20
|
"typecheck:watch": "bunx tsc --noEmit --watch",
|
|
21
21
|
"build": "bunx tsc",
|
|
22
|
+
"postbuild": "chmod +x dist/main.js",
|
|
22
23
|
"inspect": "bunx @modelcontextprotocol/inspector --config ./mcp-inspector.json --server sunsama",
|
|
23
24
|
"changeset": "changeset",
|
|
24
25
|
"version": "changeset version",
|
package/src/main.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { apiDocumentationResource } from "./resources/index.js";
|
|
|
10
10
|
(async () => {
|
|
11
11
|
const server = new McpServer({
|
|
12
12
|
name: "Sunsama API Server",
|
|
13
|
-
version: "0.15.
|
|
13
|
+
version: "0.15.4",
|
|
14
14
|
instructions: `
|
|
15
15
|
This MCP server provides access to the Sunsama API for task and project management.
|
|
16
16
|
|