@socialneuron/mcp-server 1.7.9 → 1.7.10
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 +9 -0
- package/dist/http.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@socialneuron/mcp-server` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.7.10] - 2026-05-01
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Fixed stdio MCP `tools/list` runtime serialization by updating `execute_recipe.inputs` to use the Zod 4-compatible `z.record(z.string(), z.unknown())` form. The 1.7.9 package could start but failed tool listing with `Cannot read properties of undefined (reading '_zod')`.
|
|
9
|
+
- Added a regression test that serializes the real registered stdio tool schemas through the MCP SDK JSON-schema conversion path.
|
|
10
|
+
- Pinned `posthog-node` to `5.20.0` to keep public installs compatible with the advertised Node `>=20.0.0 <21.0.0 || >=22.0.0` engine range.
|
|
11
|
+
- `MCP_VERSION` bumped to `1.7.10`.
|
|
12
|
+
|
|
5
13
|
## [1.7.9] - 2026-05-01
|
|
6
14
|
|
|
7
15
|
### Security
|
|
@@ -12,6 +20,7 @@ All notable changes to `@socialneuron/mcp-server` will be documented in this fil
|
|
|
12
20
|
|
|
13
21
|
### Fixed
|
|
14
22
|
- Corrected auth documentation: this public server package currently uses an in-memory Dynamic Client Registration store. The earlier 1.7.7 changelog entry overstated persistent DCR storage; persistent DCR storage and separate short-lived connector tokens require companion backend changes outside this repo.
|
|
23
|
+
- Synced `server.json` registry manifest version fields to `1.7.9` so MCP registry metadata matches the published npm package.
|
|
15
24
|
|
|
16
25
|
## [1.7.8] - 2026-04-25
|
|
17
26
|
|
package/dist/http.js
CHANGED
|
@@ -1388,7 +1388,7 @@ init_supabase();
|
|
|
1388
1388
|
init_request_context();
|
|
1389
1389
|
|
|
1390
1390
|
// src/lib/version.ts
|
|
1391
|
-
var MCP_VERSION = "1.7.
|
|
1391
|
+
var MCP_VERSION = "1.7.10";
|
|
1392
1392
|
|
|
1393
1393
|
// src/tools/content.ts
|
|
1394
1394
|
var MAX_CREDITS_PER_RUN = Math.max(0, Number(process.env.SOCIALNEURON_MAX_CREDITS_PER_RUN || 0));
|
|
@@ -7556,7 +7556,7 @@ ${lines.join("\n\n")}`
|
|
|
7556
7556
|
"Execute a recipe template with the provided inputs. This creates a recipe run that processes each step sequentially. Long-running recipes will return a run_id you can check with get_recipe_run_status.",
|
|
7557
7557
|
{
|
|
7558
7558
|
slug: z17.string().describe('Recipe slug (e.g., "weekly-instagram-calendar")'),
|
|
7559
|
-
inputs: z17.record(z17.unknown()).describe(
|
|
7559
|
+
inputs: z17.record(z17.string(), z17.unknown()).describe(
|
|
7560
7560
|
"Input values matching the recipe input schema. Use get_recipe_details to see required inputs."
|
|
7561
7561
|
),
|
|
7562
7562
|
response_format: z17.enum(["text", "json"]).optional().describe("Optional response format. Defaults to text.")
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var MCP_VERSION;
|
|
|
14
14
|
var init_version = __esm({
|
|
15
15
|
"src/lib/version.ts"() {
|
|
16
16
|
"use strict";
|
|
17
|
-
MCP_VERSION = "1.7.
|
|
17
|
+
MCP_VERSION = "1.7.10";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -10674,7 +10674,7 @@ ${lines.join("\n\n")}`
|
|
|
10674
10674
|
"Execute a recipe template with the provided inputs. This creates a recipe run that processes each step sequentially. Long-running recipes will return a run_id you can check with get_recipe_run_status.",
|
|
10675
10675
|
{
|
|
10676
10676
|
slug: z17.string().describe('Recipe slug (e.g., "weekly-instagram-calendar")'),
|
|
10677
|
-
inputs: z17.record(z17.unknown()).describe(
|
|
10677
|
+
inputs: z17.record(z17.string(), z17.unknown()).describe(
|
|
10678
10678
|
"Input values matching the recipe input schema. Use get_recipe_details to see required inputs."
|
|
10679
10679
|
),
|
|
10680
10680
|
response_format: z17.enum(["text", "json"]).optional().describe("Optional response format. Defaults to text.")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socialneuron/mcp-server",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.10",
|
|
4
4
|
"description": "MCP server for Social Neuron - AI content creation platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"express-rate-limit": "^8.3.2",
|
|
80
80
|
"jose": "^6.2.1",
|
|
81
81
|
"open": "10.0.0",
|
|
82
|
-
"posthog-node": "
|
|
82
|
+
"posthog-node": "5.20.0",
|
|
83
83
|
"zod": "^4.3.6"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|