mcp-sunsama 0.15.0 → 0.15.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.
- package/CHANGELOG.md +6 -0
- package/bun.lock +2 -2
- package/dist/src/main.js +1 -1
- package/package.json +2 -2
- package/src/main.ts +1 -1
package/CHANGELOG.md
CHANGED
package/bun.lock
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"cors": "^2.8.5",
|
|
10
10
|
"express": "^5.1.0",
|
|
11
11
|
"papaparse": "^5.5.3",
|
|
12
|
-
"sunsama-api": "0.11.
|
|
12
|
+
"sunsama-api": "0.11.2",
|
|
13
13
|
"zod": "3.24.4",
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
|
|
397
397
|
"strip-bom": ["strip-bom@3.0.0", "", {}, "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="],
|
|
398
398
|
|
|
399
|
-
"sunsama-api": ["sunsama-api@0.11.
|
|
399
|
+
"sunsama-api": ["sunsama-api@0.11.2", "", { "dependencies": { "graphql": "^16.11.0", "graphql-tag": "^2.12.6", "marked": "^14.1.3", "tough-cookie": "^5.1.2", "tslib": "^2.8.1", "turndown": "^7.2.0", "yjs": "^13.6.27", "zod": "^3.25.64" } }, "sha512-tyBrCai6Z0jEmRXkwGY+0PlXJTAwE3IJXXRCDcGFwpFPxFO5fyxw6mqM/RhYu7OGhP3AF7w4CikvEOBDaFXvKA=="],
|
|
400
400
|
|
|
401
401
|
"term-size": ["term-size@2.2.1", "", {}, "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="],
|
|
402
402
|
|
package/dist/src/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.1",
|
|
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.1",
|
|
4
4
|
"description": "MCP server for Sunsama API integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"cors": "^2.8.5",
|
|
32
32
|
"express": "^5.1.0",
|
|
33
33
|
"papaparse": "^5.5.3",
|
|
34
|
-
"sunsama-api": "0.11.
|
|
34
|
+
"sunsama-api": "0.11.2",
|
|
35
35
|
"zod": "3.24.4"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
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.1",
|
|
14
14
|
instructions: `
|
|
15
15
|
This MCP server provides access to the Sunsama API for task and project management.
|
|
16
16
|
|