@avallon-labs/mcp 3.3.0 → 3.4.0-staging.150
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/dist/index.js
CHANGED
|
@@ -3333,6 +3333,18 @@ var GetProfileResponse = zod.object({
|
|
|
3333
3333
|
tenant: zod.object({
|
|
3334
3334
|
id: zod.string(),
|
|
3335
3335
|
name: zod.string()
|
|
3336
|
+
}),
|
|
3337
|
+
tenants: zod.object({
|
|
3338
|
+
active: zod.object({
|
|
3339
|
+
id: zod.string(),
|
|
3340
|
+
name: zod.string()
|
|
3341
|
+
}),
|
|
3342
|
+
available: zod.array(
|
|
3343
|
+
zod.object({
|
|
3344
|
+
id: zod.string(),
|
|
3345
|
+
name: zod.string()
|
|
3346
|
+
})
|
|
3347
|
+
)
|
|
3336
3348
|
})
|
|
3337
3349
|
});
|
|
3338
3350
|
var CreateToolBody = zod.object({
|
|
@@ -4243,4 +4255,4 @@ var transport = new StdioServerTransport();
|
|
|
4243
4255
|
server.connect(transport).then(() => {
|
|
4244
4256
|
console.error("MCP server running on stdio");
|
|
4245
4257
|
}).catch(console.error);
|
|
4246
|
-
//# sourceMappingURL=server-
|
|
4258
|
+
//# sourceMappingURL=server-6C53UUAN.js.map
|