@socialneuron/mcp-server 1.5.0 → 1.5.2
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 +16 -0
- package/dist/http.js +535 -128
- package/dist/index.js +535 -128
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@socialneuron/mcp-server` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.5.2] - 2026-03-20
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **Error recovery hints**: All 47 error paths now include actionable recovery guidance — agents know what to call next when something fails (e.g., "Call get_credit_balance to check remaining credits" or "Verify platform OAuth with list_connected_accounts").
|
|
9
|
+
- Central `formatToolError()` helper with 9 error categories: rate limits, credits, OAuth, generation, not-found, access, SSRF, scheduling, and plan validation.
|
|
10
|
+
- 18 new tests for error recovery formatting.
|
|
11
|
+
|
|
12
|
+
## [1.5.1] - 2026-03-20
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- **MCP tool annotations**: All 52 tools now declare `readOnlyHint`, `destructiveHint`, `idempotentHint`, and `openWorldHint` per MCP spec. Agents can now determine which tools are safe to call without confirmation.
|
|
16
|
+
- **Complete parameter descriptions**: Added `.describe()` to all remaining parameters (248 total). Every parameter now has format examples, constraints, and usage guidance.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Updated test setup to support 5-argument `server.tool()` signature with annotations.
|
|
20
|
+
|
|
5
21
|
## [1.5.0] - 2026-03-19
|
|
6
22
|
|
|
7
23
|
### Changed
|