@mcp-abap-adt/core 6.5.0 → 6.5.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 +5 -0
- package/README.md +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [6.5.1] - 2026-04-24
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
- README: mention optional `readOnlyDedupStrategy` in the `EmbeddableMcpServer` example and link to the dedup strategies section in `HANDLERS_MANAGEMENT.md`.
|
|
9
|
+
|
|
5
10
|
## [6.5.0] - 2026-04-24
|
|
6
11
|
|
|
7
12
|
### Added
|
package/README.md
CHANGED
|
@@ -86,16 +86,23 @@ mcp-abap-adt --transport=sse # SSE mode
|
|
|
86
86
|
### 2. Embeddable Server (For Integration)
|
|
87
87
|
Embed MCP server into existing applications (e.g., SAP CAP/CDS, Express):
|
|
88
88
|
```typescript
|
|
89
|
-
import {
|
|
89
|
+
import {
|
|
90
|
+
EmbeddableMcpServer,
|
|
91
|
+
ReadVsGetDedupStrategy, // optional: hide Read<X> when Get<X> also exposed
|
|
92
|
+
} from '@mcp-abap-adt/core/server';
|
|
90
93
|
|
|
91
94
|
const server = new EmbeddableMcpServer({
|
|
92
95
|
connection, // Your AbapConnection instance
|
|
93
96
|
logger, // Optional logger
|
|
94
97
|
exposition: ['readonly', 'high'], // Handler groups to expose
|
|
98
|
+
// Optional; default: no dedup — existing consumers see no change.
|
|
99
|
+
readOnlyDedupStrategy: new ReadVsGetDedupStrategy(),
|
|
95
100
|
});
|
|
96
101
|
await server.connect(transport);
|
|
97
102
|
```
|
|
98
103
|
|
|
104
|
+
See [Handlers Management → EmbeddableMcpServer dedup strategies](docs/user-guide/HANDLERS_MANAGEMENT.md#embeddablemcpserver-dedup-strategies) for opt-in dedup of readonly tools against high/low/compact, including how to plug a custom `IReadOnlyDedupStrategy` for role-based rules.
|
|
105
|
+
|
|
99
106
|
## Quick Start
|
|
100
107
|
|
|
101
108
|
1. **Install server**: See [Installation Guide](docs/installation/INSTALLATION.md)
|