@socialneuron/mcp-server 1.7.18 → 1.8.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 +32 -1
- package/README.md +8 -8
- package/dist/http.js +9204 -8671
- package/dist/index.js +9372 -8932
- package/dist/sn.js +635 -195
- package/package.json +6 -4
- package/tools.lock.json +36 -36
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@socialneuron/mcp-server` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.8.1] - 2026-07-14
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **`create_storyboard` empty responses.** The tool now accepts the AI service's canonical `text` response field as well as the legacy `content` field, and reports a real tool error when neither contains a storyboard.
|
|
10
|
+
- **Project isolation across the creative workflow.** `generate_image`, `create_storyboard`, `generate_voiceover`, and `render_hyperframes` now accept `project_id`. Analytics refresh, analytics reads, performance insights, and best-time recommendations are also project-scoped and default to the active project context.
|
|
11
|
+
- **Autopilot run visibility.** `get_autopilot_status` now returns recent runs supplied by the backend instead of replacing them with an empty array.
|
|
12
|
+
- **HyperFrames capability copy.** Removed the obsolete Phase-2/runtime-not-installed warning now that live HyperFrames renders complete successfully, and corrected image/storyboard/voiceover credit descriptions to match the client budget checks.
|
|
13
|
+
|
|
14
|
+
## [1.8.0] - 2026-07-14
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **`generate_video` model menu rebuilt around quality — 8 → 12 models.** New: `seedance-2-fast`, `seedance-2`, `grok-imagine`, `wan-2.6`, `gemini-omni-video`, `hailuo-02-standard`, `seedance-1.5-pro`. Removed from the menu: `runway-aleph` (upstream provider sunsets 2026-07-30), `sora2`/`sora2-pro` (upstream API shuts down 2026-09-24). The model description now carries a quality ladder plus honest per-model base credit costs, replacing figures that had drifted badly from real charges.
|
|
19
|
+
- **`enable_audio` now defaults to FALSE** (cost control) with the real per-model audio multipliers documented in the parameter description.
|
|
20
|
+
- **Video prices corrected server-side** (notably `veo3-fast` cut to roughly a third of its previous credit price); the client-side estimate map matches.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- **`generate_video` accepts `project_id`** so videos land in the right workspace/brand on multi-project accounts (brand context auto-injects from the project's brand profile).
|
|
25
|
+
- **Stable `check_status` JSON shape** (`lib/checkStatusShape.ts`): canonical snake_case fields (`job_id`, `status`, `progress`, `result_url`, `r2_key`, `all_urls`, `error`, `credits_cost`, `created_at`, `completed_at`) are ALWAYS present regardless of which poll branch serves the response, with legacy camelCase aliases (`jobId`, `resultUrl`, `credits`, `createdAt`, …) also always populated. Previously the field names differed depending on whether the poll caught a job mid-render or after completion.
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- **Completed-video download handoff.** `get_media_url` now accepts the exact `r2://...` key returned by `check_status`, normalizing the storage marker before signing. Previously a successfully generated video could appear unusable because the direct handoff returned HTTP 403 unless the caller stripped the prefix itself.
|
|
30
|
+
- **False `PROJECT_SCOPE_MISMATCH` (403) on project-scoped API keys** for tools that take no `project_id` argument (e.g. `get_credit_balance`). The client previously guessed a default project from "most recently created", which can disagree with the key's real scope on multi-project accounts. The key's own server-resolved project scope is now carried per-request (stdio and HTTP modes) and always wins over the guess. Fixes the same class of failure across every project-scoped tool that relied on the default-project lookup.
|
|
31
|
+
|
|
5
32
|
## [1.7.18] - 2026-07-06
|
|
6
33
|
|
|
7
34
|
### Added
|
|
@@ -13,10 +40,14 @@ All notable changes to `@socialneuron/mcp-server` will be documented in this fil
|
|
|
13
40
|
### Fixed
|
|
14
41
|
|
|
15
42
|
- Scrubbed an internal codename from `schedule_post`'s param descriptions (exposed via the new unauthenticated OpenAPI). Added a regression guard.
|
|
43
|
+
- Tightened `schedule_post` account selection so platform account IDs are validated against the requested `project_id`, platform, and usable connection status before a post is scheduled. `list_connected_accounts`, `start_platform_connection`, and `wait_for_connection` now carry project context so agents can distinguish brands such as The VPN Matrix from Social Neuron.
|
|
44
|
+
- Hid internal loop-observability tools from public HTTP discovery, server-card, OpenAPI, REST, and `search_tools`, while keeping them registered for internal automation.
|
|
45
|
+
- Removed private lineage fields from public `schedule_post` discovery/OpenAPI schemas while preserving runtime compatibility for internal callers.
|
|
16
46
|
|
|
17
47
|
### Changed
|
|
18
48
|
|
|
19
49
|
- `docs/rest-api.md` updated to the real response shape (MCP result on success, `error_type` on error) and re-links the live OpenAPI spec.
|
|
50
|
+
- PR CI now enforces the dependency cooldown gate with `SN_DEP_AGE_ENFORCE=true` when package manifests, lockfiles, SDK package files, content-calendar package files, or the release workflow change.
|
|
20
51
|
|
|
21
52
|
## [1.7.16] - 2026-07-06
|
|
22
53
|
|
|
@@ -34,7 +65,7 @@ All notable changes to `@socialneuron/mcp-server` will be documented in this fil
|
|
|
34
65
|
|
|
35
66
|
### Changed
|
|
36
67
|
|
|
37
|
-
- **Public tool surface tightened.** Internal service tools used by Social Neuron's own automation are still registered and scope-gated at runtime, but are no longer advertised on the hosted server card, HTTP discovery, `search_tools`, knowledge documents, or the CLI tool listing.
|
|
68
|
+
- **Public tool surface tightened.** Internal service tools used by Social Neuron's own automation are still registered and scope-gated at runtime, but are no longer advertised on the hosted server card, HTTP discovery, `search_tools`, knowledge documents, or the CLI tool listing.
|
|
38
69
|
- **Tool descriptions cleaned up.** Internal project references and implementation jargon removed from tool descriptions across the catalog.
|
|
39
70
|
- **`run_content_pipeline` scheduling guard restored.** Scheduling again requires `schedule_confirmed=true` after explicit user approval, cannot run with the quality stage skipped, caps generated posts to the requested plan size, drops posts targeting unrequested platforms, and counts scheduled posts against the credit budget. (This hardening was unintentionally dropped in the 1.7.14 source sync.)
|
|
40
71
|
- **Metadata contract unified + CI-guarded.** `server.json` version/pricing/tool-count now match `package.json` and the canonical pricing (MCP requires Pro $49/mo or higher; free tier is 50 credits/mo with no MCP access). Added `mcpName` for MCP Registry ownership verification. New `npm run verify:metadata` gate (wired into CI and release) blocks stale counts, stale pricing, internal codenames, and dead endpoint links from re-entering the public surface.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @socialneuron/mcp-server
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> 80+ public MCP tools for AI-powered social media management. Create content, schedule posts, track analytics, and optimize performance — all from Claude Code or any MCP client.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@socialneuron/mcp-server)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
npx -y @socialneuron/mcp-server login --device
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
This opens your browser to authorize access. Requires a
|
|
16
|
+
This opens your browser to authorize access. Requires a Social Neuron Pro plan or higher. See [pricing](https://socialneuron.com/pricing).
|
|
17
17
|
|
|
18
18
|
### 2. Add to Claude Code
|
|
19
19
|
|
|
@@ -94,7 +94,7 @@ Ask Claude things like:
|
|
|
94
94
|
|
|
95
95
|
## Tool Categories
|
|
96
96
|
|
|
97
|
-
The hosted endpoint advertises **
|
|
97
|
+
The hosted endpoint advertises **83 public tools** (live count: [server card](https://mcp.socialneuron.com/.well-known/mcp/server-card.json)); the npm stdio server exposes **84 public tools**, including 2 local screen-capture tools. A small set of internal service tools used by Social Neuron's own automation are registered but not part of the public surface.
|
|
98
98
|
|
|
99
99
|
These tools are available to AI agents (Claude, Cursor, etc.) via the MCP protocol.
|
|
100
100
|
|
|
@@ -166,15 +166,15 @@ Keys are stored in your OS keychain (macOS Keychain, Linux secret-tool) or file
|
|
|
166
166
|
|
|
167
167
|
## Pricing
|
|
168
168
|
|
|
169
|
-
MCP access requires a
|
|
169
|
+
MCP/API access requires a Pro plan or higher:
|
|
170
170
|
|
|
171
|
-
| Plan | Price | Credits/mo | MCP Access |
|
|
171
|
+
| Plan | Price | Credits/mo | MCP/API Access |
|
|
172
172
|
|------|-------|-----------|------------|
|
|
173
173
|
| Free | $0 | 50 | — |
|
|
174
174
|
| Starter | $19/mo | 500 | — |
|
|
175
|
-
| Pro | $49/mo | 1,500 | Read + Analytics + Write + Distribute |
|
|
176
|
-
| Team | $99/mo | 3,500 | Full + 5 keys |
|
|
177
|
-
| Agency | $249/mo | 10,000 | Full + 20 keys
|
|
175
|
+
| Pro | $49/mo | 1,500 | MCP/API: Read + Analytics + Write + Distribute |
|
|
176
|
+
| Team | $99/mo | 3,500 | Full MCP/API + 5 keys |
|
|
177
|
+
| Agency | $249/mo | 10,000 | Full MCP/API + 20 keys |
|
|
178
178
|
|
|
179
179
|
Sign up at [socialneuron.com/pricing](https://socialneuron.com/pricing).
|
|
180
180
|
|