@ziggs-ai/ziggs-mcp 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/dist/pendingDecisions.js +2 -2
- package/package.json +2 -2
package/dist/pendingDecisions.js
CHANGED
|
@@ -25,10 +25,10 @@ export function resolveWebAppOrigin(webUrl) {
|
|
|
25
25
|
return (webUrl?.trim() || 'https://ziggsai.com').replace(/\/$/, '');
|
|
26
26
|
}
|
|
27
27
|
export function agreementAppUrl(origin, agreementId) {
|
|
28
|
-
return `${origin}/app/
|
|
28
|
+
return `${origin}/app/agreements/${encodeURIComponent(agreementId)}`;
|
|
29
29
|
}
|
|
30
30
|
export function agreementsListAppUrl(origin) {
|
|
31
|
-
return `${origin}/app/
|
|
31
|
+
return `${origin}/app/agreements`;
|
|
32
32
|
}
|
|
33
33
|
/** Where the human connects MCP servers and grants tools. */
|
|
34
34
|
export function connectionsSettingsAppUrl(origin) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ziggs-ai/ziggs-mcp",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "MCP server for Claude Code, Cursor, and other MCP hosts — act as your Ziggs delegate agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
42
|
-
"@ziggs-ai/api-client": "0.
|
|
42
|
+
"@ziggs-ai/api-client": "0.15.1",
|
|
43
43
|
"dotenv": "^16.6.1",
|
|
44
44
|
"zod": "^3.24.2",
|
|
45
45
|
"zod-to-json-schema": "^3.25.1"
|