@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 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 { EmbeddableMcpServer } from '@mcp-abap-adt/core/server';
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)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/core",
3
3
  "mcpName": "io.github.fr0ster/mcp-abap-adt",
4
- "version": "6.5.0",
4
+ "version": "6.5.1",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {