@meetkai/mka1 0.54.30 → 0.54.31
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/bin/mcp-server.js +26 -10
- package/bin/mcp-server.js.map +7 -7
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/lib/config.js.map +1 -1
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/operations/getmodel.d.ts +10 -0
- package/dist/commonjs/models/operations/getmodel.d.ts.map +1 -1
- package/dist/commonjs/models/operations/getmodel.js +8 -0
- package/dist/commonjs/models/operations/getmodel.js.map +1 -1
- package/dist/commonjs/models/operations/listmodels.d.ts +10 -0
- package/dist/commonjs/models/operations/listmodels.d.ts.map +1 -1
- package/dist/commonjs/models/operations/listmodels.js +8 -0
- package/dist/commonjs/models/operations/listmodels.js.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/lib/config.js.map +1 -1
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/operations/getmodel.d.ts +10 -0
- package/dist/esm/models/operations/getmodel.d.ts.map +1 -1
- package/dist/esm/models/operations/getmodel.js +8 -0
- package/dist/esm/models/operations/getmodel.js.map +1 -1
- package/dist/esm/models/operations/listmodels.d.ts +10 -0
- package/dist/esm/models/operations/listmodels.d.ts.map +1 -1
- package/dist/esm/models/operations/listmodels.js +8 -0
- package/dist/esm/models/operations/listmodels.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/getmodel.ts +18 -0
- package/src/models/operations/listmodels.ts +18 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52917,9 +52917,9 @@ var init_config = __esm(() => {
|
|
|
52917
52917
|
SDK_METADATA = {
|
|
52918
52918
|
language: "typescript",
|
|
52919
52919
|
openapiDocVersion: "1.1.0",
|
|
52920
|
-
sdkVersion: "0.54.
|
|
52921
|
-
genVersion: "2.
|
|
52922
|
-
userAgent: "speakeasy-sdk/typescript 0.54.
|
|
52920
|
+
sdkVersion: "0.54.31",
|
|
52921
|
+
genVersion: "2.937.18",
|
|
52922
|
+
userAgent: "speakeasy-sdk/typescript 0.54.31 2.937.18 1.1.0 @meetkai/mka1"
|
|
52923
52923
|
};
|
|
52924
52924
|
});
|
|
52925
52925
|
|
|
@@ -96840,11 +96840,15 @@ var init_getmodel = __esm(() => {
|
|
|
96840
96840
|
created: numberType().int(),
|
|
96841
96841
|
owned_by: stringType(),
|
|
96842
96842
|
model_type: ModelType$inboundSchema,
|
|
96843
|
+
input_modalities: arrayType(stringType()),
|
|
96844
|
+
output_modalities: arrayType(stringType()),
|
|
96843
96845
|
capabilities: lazyType(() => Capabilities$inboundSchema2)
|
|
96844
96846
|
}).transform((v2) => {
|
|
96845
96847
|
return remap(v2, {
|
|
96846
96848
|
owned_by: "ownedBy",
|
|
96847
|
-
model_type: "modelType"
|
|
96849
|
+
model_type: "modelType",
|
|
96850
|
+
input_modalities: "inputModalities",
|
|
96851
|
+
output_modalities: "outputModalities"
|
|
96848
96852
|
});
|
|
96849
96853
|
});
|
|
96850
96854
|
GetModelResponseBody$outboundSchema = objectType({
|
|
@@ -96853,11 +96857,15 @@ var init_getmodel = __esm(() => {
|
|
|
96853
96857
|
created: numberType().int(),
|
|
96854
96858
|
ownedBy: stringType(),
|
|
96855
96859
|
modelType: ModelType$outboundSchema,
|
|
96860
|
+
inputModalities: arrayType(stringType()),
|
|
96861
|
+
outputModalities: arrayType(stringType()),
|
|
96856
96862
|
capabilities: lazyType(() => Capabilities$outboundSchema2)
|
|
96857
96863
|
}).transform((v2) => {
|
|
96858
96864
|
return remap(v2, {
|
|
96859
96865
|
ownedBy: "owned_by",
|
|
96860
|
-
modelType: "model_type"
|
|
96866
|
+
modelType: "model_type",
|
|
96867
|
+
inputModalities: "input_modalities",
|
|
96868
|
+
outputModalities: "output_modalities"
|
|
96861
96869
|
});
|
|
96862
96870
|
});
|
|
96863
96871
|
});
|
|
@@ -102002,11 +102010,15 @@ var init_listmodels = __esm(() => {
|
|
|
102002
102010
|
created: numberType().int(),
|
|
102003
102011
|
owned_by: stringType(),
|
|
102004
102012
|
model_type: ListModelsModelType$inboundSchema,
|
|
102013
|
+
input_modalities: arrayType(stringType()),
|
|
102014
|
+
output_modalities: arrayType(stringType()),
|
|
102005
102015
|
capabilities: lazyType(() => ListModelsCapabilities$inboundSchema)
|
|
102006
102016
|
}).transform((v2) => {
|
|
102007
102017
|
return remap(v2, {
|
|
102008
102018
|
owned_by: "ownedBy",
|
|
102009
|
-
model_type: "modelType"
|
|
102019
|
+
model_type: "modelType",
|
|
102020
|
+
input_modalities: "inputModalities",
|
|
102021
|
+
output_modalities: "outputModalities"
|
|
102010
102022
|
});
|
|
102011
102023
|
});
|
|
102012
102024
|
ListModelsData$outboundSchema = objectType({
|
|
@@ -102015,11 +102027,15 @@ var init_listmodels = __esm(() => {
|
|
|
102015
102027
|
created: numberType().int(),
|
|
102016
102028
|
ownedBy: stringType(),
|
|
102017
102029
|
modelType: ListModelsModelType$outboundSchema,
|
|
102030
|
+
inputModalities: arrayType(stringType()),
|
|
102031
|
+
outputModalities: arrayType(stringType()),
|
|
102018
102032
|
capabilities: lazyType(() => ListModelsCapabilities$outboundSchema)
|
|
102019
102033
|
}).transform((v2) => {
|
|
102020
102034
|
return remap(v2, {
|
|
102021
102035
|
ownedBy: "owned_by",
|
|
102022
|
-
modelType: "model_type"
|
|
102036
|
+
modelType: "model_type",
|
|
102037
|
+
inputModalities: "input_modalities",
|
|
102038
|
+
outputModalities: "output_modalities"
|
|
102023
102039
|
});
|
|
102024
102040
|
});
|
|
102025
102041
|
ListModelsResponseBody$inboundSchema = objectType({
|
|
@@ -153591,7 +153607,7 @@ Aggregate sandbox usage (session lifecycle, execution, and workspace operations)
|
|
|
153591
153607
|
function createMCPServer(deps) {
|
|
153592
153608
|
const server = new McpServer({
|
|
153593
153609
|
name: "SDK",
|
|
153594
|
-
version: "0.54.
|
|
153610
|
+
version: "0.54.31"
|
|
153595
153611
|
});
|
|
153596
153612
|
const client = new SDKCore({
|
|
153597
153613
|
bearerAuth: deps.bearerAuth,
|
|
@@ -155549,7 +155565,7 @@ var routes = rn({
|
|
|
155549
155565
|
var app = Ve(routes, {
|
|
155550
155566
|
name: "mcp",
|
|
155551
155567
|
versionInfo: {
|
|
155552
|
-
currentVersion: "0.54.
|
|
155568
|
+
currentVersion: "0.54.31"
|
|
155553
155569
|
}
|
|
155554
155570
|
});
|
|
155555
155571
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -155557,5 +155573,5 @@ export {
|
|
|
155557
155573
|
app
|
|
155558
155574
|
};
|
|
155559
155575
|
|
|
155560
|
-
//# debugId=
|
|
155576
|
+
//# debugId=70A6E5616D2AA4A664756E2164756E21
|
|
155561
155577
|
//# sourceMappingURL=mcp-server.js.map
|