mcp-server-framework 1.0.1 → 1.0.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 +8 -0
- package/LICENSE-GPL.txt +675 -0
- package/LICENSE.txt +165 -0
- package/README.md +3 -5
- package/build/mcp/capabilities/registry/tool-registry.d.ts.map +1 -1
- package/build/mcp/capabilities/registry/tool-registry.js +7 -2
- package/build/mcp/capabilities/registry/tool-registry.js.map +1 -1
- package/build/server/transport/sse/handler.d.ts.map +1 -1
- package/build/server/transport/sse/handler.js +1 -3
- package/build/server/transport/sse/handler.js.map +1 -1
- package/build/server/transport/streamable-http/stateful-handler.d.ts.map +1 -1
- package/build/server/transport/streamable-http/stateful-handler.js +3 -3
- package/build/server/transport/streamable-http/stateful-handler.js.map +1 -1
- package/package.json +3 -3
- package/LICENSE-GPL.md +0 -219
- package/LICENSE.md +0 -187
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.2] - fix: license format, logging improvements, session-not-found response
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **License** updated license files to .txt format for further compatibility and fixed GitHub license auto detection
|
|
15
|
+
- **Tool error logging**: Expected tool errors (`statusCode < 500`, e.g. invalid input, not found, auth failures) now logged at WARN with message-only instead of full error object with stack trace. Real errors (`>= 500`) retain full stack trace at ERROR level
|
|
16
|
+
- **Session-not-found response**: HTTP 404 responses for expired/unknown sessions now send plain text instead of JSON-RPC body. The MCP SDK reads non-2xx response bodies as raw text, so the previous JSON-RPC envelope appeared as an ugly nested string in client error messages. Affects Streamable HTTP (POST, GET, DELETE) and SSE legacy transport
|
|
17
|
+
|
|
10
18
|
---
|
|
11
19
|
|
|
12
20
|
## [1.0.1] - fix: session lifecycle, logging, config & OTEL improvements
|