@mcp-abap-adt/core 2.0.0 → 2.0.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
+ ## [2.0.1] - 2025-12-30
6
+ ### Documentation
7
+ - Added glama.ai badge with security/license/quality grades
8
+ - Updated README example to use `EmbeddableMcpServer` instead of deprecated `HandlerExporter.registerOnServer()`
9
+
5
10
  ## [2.0.0] - 2025-12-30
6
11
  ### Added
7
12
  - **EmbeddableMcpServer**: New server class for external integration (e.g., cloud-llm-hub)
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # mcp-abap-adt: Your Gateway to ABAP Development Tools (ADT)
2
2
 
3
+ <a href="https://glama.ai/mcp/servers/@fr0ster/mcp-abap-adt">
4
+ <img width="380" height="200" src="https://glama.ai/mcp/servers/@fr0ster/mcp-abap-adt/badge" />
5
+ </a>
6
+
3
7
  > **Acknowledgment**: This project was originally inspired by [mario-andreschak/mcp-abap-adt](https://github.com/mario-andreschak/mcp-abap-adt). We started with the core concept and then evolved it into an independent project with our own architecture and features.
4
8
 
5
9
  This project provides a server that allows you to interact with SAP ABAP systems using the Model Context Protocol (MCP). Think of it as a bridge that lets tools like [Cline](https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev) (a VS Code extension) talk to your ABAP system and retrieve information like source code, table structures, and more.
@@ -16,13 +20,17 @@ mcp-abap-adt --transport=http # HTTP mode
16
20
  mcp-abap-adt --transport=sse # SSE mode
17
21
  ```
18
22
 
19
- ### 2. Handler Exporter (For Embedding)
20
- Export handlers for integration into existing servers (e.g., SAP CAP/CDS applications):
23
+ ### 2. Embeddable Server (For Integration)
24
+ Embed MCP server into existing applications (e.g., SAP CAP/CDS, Express):
21
25
  ```typescript
22
- import { HandlerExporter } from '@mcp-abap-adt/core/handlers';
23
-
24
- const exporter = new HandlerExporter();
25
- exporter.registerOnServer(mcpServer, () => getConnection());
26
+ import { EmbeddableMcpServer } from '@mcp-abap-adt/core/server';
27
+
28
+ const server = new EmbeddableMcpServer({
29
+ connection, // Your AbapConnection instance
30
+ logger, // Optional logger
31
+ exposition: ['readonly', 'high'], // Handler groups to expose
32
+ });
33
+ await server.connect(transport);
26
34
  ```
27
35
 
28
36
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/core",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {