@node-in-layers/mcp-server 1.5.11 → 1.6.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/mcp.d.ts +4 -2
- package/package.json +2 -2
package/mcp.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ declare const mcpModels: <TConfig extends Readonly<{
|
|
|
15
15
|
logging: {
|
|
16
16
|
logLevel: import("@node-in-layers/core/types.js").LogLevelNames;
|
|
17
17
|
logFormat: import("@node-in-layers/core/types.js").LogFormat | readonly import("@node-in-layers/core/types.js").LogFormat[];
|
|
18
|
+
maxLogSizeInCharacters?: number | undefined;
|
|
18
19
|
tcpLoggingOptions?: Readonly<{
|
|
19
20
|
url: string;
|
|
20
21
|
headers?: Record<string, string | object> | undefined;
|
|
@@ -85,7 +86,7 @@ declare const mcpModels: <TConfig extends Readonly<{
|
|
|
85
86
|
modelCruds?: boolean | undefined;
|
|
86
87
|
customModelFactory?: {
|
|
87
88
|
[x: string]: {
|
|
88
|
-
[x: string]: string | [string, any[]];
|
|
89
|
+
[x: string]: string | [string, string] | [string, string, any[]];
|
|
89
90
|
};
|
|
90
91
|
} | undefined;
|
|
91
92
|
}>;
|
|
@@ -96,6 +97,7 @@ declare const mcpModels: <TConfig extends Readonly<{
|
|
|
96
97
|
logging: {
|
|
97
98
|
logLevel: import("@node-in-layers/core/types.js").LogLevelNames;
|
|
98
99
|
logFormat: import("@node-in-layers/core/types.js").LogFormat | readonly import("@node-in-layers/core/types.js").LogFormat[];
|
|
100
|
+
maxLogSizeInCharacters?: number | undefined;
|
|
99
101
|
tcpLoggingOptions?: Readonly<{
|
|
100
102
|
url: string;
|
|
101
103
|
headers?: Record<string, string | object> | undefined;
|
|
@@ -166,7 +168,7 @@ declare const mcpModels: <TConfig extends Readonly<{
|
|
|
166
168
|
modelCruds?: boolean | undefined;
|
|
167
169
|
customModelFactory?: {
|
|
168
170
|
[x: string]: {
|
|
169
|
-
[x: string]: string | [string, any[]];
|
|
171
|
+
[x: string]: string | [string, string] | [string, string, any[]];
|
|
170
172
|
};
|
|
171
173
|
} | undefined;
|
|
172
174
|
}>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-in-layers/mcp-server",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.6.0",
|
|
5
5
|
"description": "An MCP Server Node In Layers Package, generated by the Node In Layers Toolkit.",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@l4t/mcp-ai": "^1.5.1",
|
|
65
65
|
"@modelcontextprotocol/sdk": "^1.13.2",
|
|
66
|
-
"@node-in-layers/core": "^1.
|
|
66
|
+
"@node-in-layers/core": "^1.7.0",
|
|
67
67
|
"express": "^5.1.0",
|
|
68
68
|
"functional-models": "^3.0.16",
|
|
69
69
|
"functional-models-orm-mcp": "^3.2.0",
|