@agentic-survey/mcp-server 0.1.3 → 0.1.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/dist/server.js +3 -1
- package/package.json +2 -2
package/dist/server.js
CHANGED
|
@@ -286,7 +286,9 @@ export function buildServer() {
|
|
|
286
286
|
const link = linkConfig(c.cfg);
|
|
287
287
|
if (!link)
|
|
288
288
|
return fail('no_publishable_key', 'No publishable key configured; re-run `init`.');
|
|
289
|
-
return ok('Share link ready.', {
|
|
289
|
+
return ok('Share link ready.', {
|
|
290
|
+
shareUrl: buildShareUrl(link, surveyId, r.data.survey.title),
|
|
291
|
+
});
|
|
290
292
|
});
|
|
291
293
|
server.registerTool('list_surveys', {
|
|
292
294
|
title: 'List surveys',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentic-survey/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MCP server (stdio) exposing survey tools over core, plus the agentic-survey CLI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Monty Daley <monty@daley.org.nz>",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"prepublishOnly": "tsc -b"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@agentic-survey/core": "^0.1.
|
|
53
|
+
"@agentic-survey/core": "^0.1.2",
|
|
54
54
|
"@agentic-survey/schema": "^0.1.0",
|
|
55
55
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
56
56
|
"zod": "^3.23.0"
|