@mcp-abap-adt/llm-agent-server 21.0.0 → 22.0.0
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/LICENSE +668 -159
- package/README.md +16 -8
- package/package.json +29 -30
- package/COPYING +0 -674
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @mcp-abap-adt/llm-agent-server
|
|
2
2
|
|
|
3
|
+
[](https://stand-with-ukraine.pp.ua)
|
|
4
|
+
[](https://www.gnu.org/licenses/gpl-3.0)
|
|
5
|
+
|
|
3
6
|
Runnable distribution of SmartAgent (CLI + HTTP server). **Binary-only.**
|
|
4
7
|
|
|
5
8
|
## Library imports are not supported
|
|
@@ -24,15 +27,20 @@ See the repo docs for architecture, pipeline configuration and deployment:
|
|
|
24
27
|
|
|
25
28
|
## License
|
|
26
29
|
|
|
27
|
-
**GNU
|
|
28
|
-
[`LICENSE`](LICENSE)
|
|
29
|
-
|
|
30
|
+
**GNU General Public License v3.0 only** (`GPL-3.0-only`) — see
|
|
31
|
+
[`LICENSE`](LICENSE). This is the only package in the monorepo that is not
|
|
32
|
+
LGPL: it ships no library exports, so it is the ready-to-run product rather
|
|
33
|
+
than something you embed, and it carries the full GPL.
|
|
30
34
|
|
|
31
35
|
Copyright © 2025–2026 Oleksii Kyslytsia
|
|
32
36
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
**Running this server and talking to it over HTTP places no obligation on you
|
|
38
|
+
or on your client code** — the GPL has no network trigger. The libraries it
|
|
39
|
+
composes stay `LGPL-3.0-only`, so you can still embed those in a closed-source
|
|
40
|
+
program. What the GPL asks is that if you distribute a *modified* build of this
|
|
41
|
+
server, the corresponding source goes out under the GPL too.
|
|
42
|
+
|
|
43
|
+
Versions up to and including v20.9.5 were MIT and v21.0.0 was `LGPL-3.0-only`;
|
|
44
|
+
a licence change is not retroactive, so those releases keep the terms they
|
|
45
|
+
shipped under. Full detail:
|
|
38
46
|
[docs/LICENSING.md](https://github.com/fr0ster/llm-agent/blob/main/docs/LICENSING.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-abap-adt/llm-agent-server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"description": "Default SmartAgent implementation with LLM providers, MCP client, HTTP server, and CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,8 +16,7 @@
|
|
|
16
16
|
"bin",
|
|
17
17
|
"tools",
|
|
18
18
|
"README.md",
|
|
19
|
-
"LICENSE"
|
|
20
|
-
"COPYING"
|
|
19
|
+
"LICENSE"
|
|
21
20
|
],
|
|
22
21
|
"scripts": {
|
|
23
22
|
"build": "tsc -p tsconfig.json",
|
|
@@ -32,44 +31,44 @@
|
|
|
32
31
|
"release:check": "tsc -p tsconfig.json --noEmit"
|
|
33
32
|
},
|
|
34
33
|
"dependencies": {
|
|
35
|
-
"@mcp-abap-adt/anthropic-llm": "^
|
|
36
|
-
"@mcp-abap-adt/deepseek-llm": "^
|
|
37
|
-
"@mcp-abap-adt/hana-vector-rag": "^
|
|
38
|
-
"@mcp-abap-adt/llm-agent": "^
|
|
39
|
-
"@mcp-abap-adt/llm-agent-libs": "^
|
|
40
|
-
"@mcp-abap-adt/llm-agent-mcp": "^
|
|
41
|
-
"@mcp-abap-adt/llm-agent-rag": "^
|
|
42
|
-
"@mcp-abap-adt/llm-agent-server-libs": "^
|
|
43
|
-
"@mcp-abap-adt/ollama-embedder": "^
|
|
44
|
-
"@mcp-abap-adt/ollama-llm": "^
|
|
45
|
-
"@mcp-abap-adt/openai-embedder": "^
|
|
46
|
-
"@mcp-abap-adt/openai-llm": "^
|
|
47
|
-
"@mcp-abap-adt/pg-vector-rag": "^
|
|
48
|
-
"@mcp-abap-adt/qdrant-rag": "^
|
|
49
|
-
"@mcp-abap-adt/sap-aicore-embedder": "^
|
|
50
|
-
"@mcp-abap-adt/sap-aicore-llm": "^
|
|
34
|
+
"@mcp-abap-adt/anthropic-llm": "^22.0.0",
|
|
35
|
+
"@mcp-abap-adt/deepseek-llm": "^22.0.0",
|
|
36
|
+
"@mcp-abap-adt/hana-vector-rag": "^22.0.0",
|
|
37
|
+
"@mcp-abap-adt/llm-agent": "^22.0.0",
|
|
38
|
+
"@mcp-abap-adt/llm-agent-libs": "^22.0.0",
|
|
39
|
+
"@mcp-abap-adt/llm-agent-mcp": "^22.0.0",
|
|
40
|
+
"@mcp-abap-adt/llm-agent-rag": "^22.0.0",
|
|
41
|
+
"@mcp-abap-adt/llm-agent-server-libs": "^22.0.0",
|
|
42
|
+
"@mcp-abap-adt/ollama-embedder": "^22.0.0",
|
|
43
|
+
"@mcp-abap-adt/ollama-llm": "^22.0.0",
|
|
44
|
+
"@mcp-abap-adt/openai-embedder": "^22.0.0",
|
|
45
|
+
"@mcp-abap-adt/openai-llm": "^22.0.0",
|
|
46
|
+
"@mcp-abap-adt/pg-vector-rag": "^22.0.0",
|
|
47
|
+
"@mcp-abap-adt/qdrant-rag": "^22.0.0",
|
|
48
|
+
"@mcp-abap-adt/sap-aicore-embedder": "^22.0.0",
|
|
49
|
+
"@mcp-abap-adt/sap-aicore-llm": "^22.0.0",
|
|
51
50
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
52
51
|
"dotenv": "^17.3.1",
|
|
53
52
|
"yaml": "^2.9.0",
|
|
54
53
|
"zod": "^4.4.3"
|
|
55
54
|
},
|
|
56
55
|
"devDependencies": {
|
|
57
|
-
"@mcp-abap-adt/anthropic-llm": "^
|
|
58
|
-
"@mcp-abap-adt/deepseek-llm": "^
|
|
59
|
-
"@mcp-abap-adt/hana-vector-rag": "^
|
|
60
|
-
"@mcp-abap-adt/ollama-embedder": "^
|
|
61
|
-
"@mcp-abap-adt/openai-embedder": "^
|
|
62
|
-
"@mcp-abap-adt/openai-llm": "^
|
|
63
|
-
"@mcp-abap-adt/pg-vector-rag": "^
|
|
64
|
-
"@mcp-abap-adt/qdrant-rag": "^
|
|
65
|
-
"@mcp-abap-adt/sap-aicore-embedder": "^
|
|
66
|
-
"@mcp-abap-adt/sap-aicore-llm": "^
|
|
56
|
+
"@mcp-abap-adt/anthropic-llm": "^22.0.0",
|
|
57
|
+
"@mcp-abap-adt/deepseek-llm": "^22.0.0",
|
|
58
|
+
"@mcp-abap-adt/hana-vector-rag": "^22.0.0",
|
|
59
|
+
"@mcp-abap-adt/ollama-embedder": "^22.0.0",
|
|
60
|
+
"@mcp-abap-adt/openai-embedder": "^22.0.0",
|
|
61
|
+
"@mcp-abap-adt/openai-llm": "^22.0.0",
|
|
62
|
+
"@mcp-abap-adt/pg-vector-rag": "^22.0.0",
|
|
63
|
+
"@mcp-abap-adt/qdrant-rag": "^22.0.0",
|
|
64
|
+
"@mcp-abap-adt/sap-aicore-embedder": "^22.0.0",
|
|
65
|
+
"@mcp-abap-adt/sap-aicore-llm": "^22.0.0",
|
|
67
66
|
"@opentelemetry/api": "^1.9.1",
|
|
68
67
|
"@sap-ai-sdk/ai-api": "^2.11.0",
|
|
69
68
|
"@sap-ai-sdk/orchestration": "^2.11.0",
|
|
70
69
|
"@types/node": "^25.9.2"
|
|
71
70
|
},
|
|
72
|
-
"license": "
|
|
71
|
+
"license": "GPL-3.0-only",
|
|
73
72
|
"repository": {
|
|
74
73
|
"type": "git",
|
|
75
74
|
"url": "git+https://github.com/fr0ster/llm-agent.git"
|