@fusebase/fusebase-gate-sdk 2.2.13-sdk.7 → 2.2.13-sdk.8
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.
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Domain: mcp-manager
|
|
6
6
|
*/
|
|
7
7
|
import type { Client } from "../runtime/transport";
|
|
8
|
-
import type { CallMcpManagerServerToolRequestContract, CallMcpManagerServerToolResponseContract, CreateMcpManagerServerFromTemplateRequestContract, InitiateMcpManagerAuthRequestContract, McpManagerAuthGlobalIdInPathRequired, McpManagerAuthResponseContract, McpManagerServerIdInPathRequired, McpManagerServerResponseContract, McpManagerTemplateIdInPathRequired, PublicMcpManagerAuthStatusResponseContract, TemplatesListResponseContract, UpdateMcpManagerAuthRequestContract } from "../types";
|
|
8
|
+
import type { CallMcpManagerServerToolRequestContract, CallMcpManagerServerToolResponseContract, CreateMcpManagerServerFromTemplateRequestContract, InitiateMcpManagerAuthRequestContract, McpManagerAuthGlobalIdInPathRequired, McpManagerAuthResponseContract, McpManagerServerIdInPathRequired, McpManagerServerResponseContract, McpManagerTemplateIdInPathRequired, PublicMcpManagerAuthStatusResponseContract, TemplateContract, TemplatesListResponseContract, UpdateMcpManagerAuthRequestContract } from "../types";
|
|
9
9
|
export declare class McpManagerApi {
|
|
10
10
|
private client;
|
|
11
11
|
constructor(client: Client);
|
|
@@ -31,6 +31,16 @@ export declare class McpManagerApi {
|
|
|
31
31
|
headers?: Record<string, string>;
|
|
32
32
|
body: CreateMcpManagerServerFromTemplateRequestContract;
|
|
33
33
|
}): Promise<McpManagerServerResponseContract>;
|
|
34
|
+
/**
|
|
35
|
+
* Get MCP server template by id
|
|
36
|
+
* Returns a single MCP server template by id.
|
|
37
|
+
*/
|
|
38
|
+
getMcpServerTemplate(params: {
|
|
39
|
+
path: {
|
|
40
|
+
templateId: McpManagerTemplateIdInPathRequired;
|
|
41
|
+
};
|
|
42
|
+
headers?: Record<string, string>;
|
|
43
|
+
}): Promise<TemplateContract>;
|
|
34
44
|
/**
|
|
35
45
|
* Get a list of MCP server templates
|
|
36
46
|
* Returns a list of templates that can be used to create a new MCP server
|
|
@@ -41,6 +41,20 @@ class McpManagerApi {
|
|
|
41
41
|
expectedContentType: "application/json",
|
|
42
42
|
});
|
|
43
43
|
}
|
|
44
|
+
/**
|
|
45
|
+
* Get MCP server template by id
|
|
46
|
+
* Returns a single MCP server template by id.
|
|
47
|
+
*/
|
|
48
|
+
async getMcpServerTemplate(params) {
|
|
49
|
+
return this.client.request({
|
|
50
|
+
method: "GET",
|
|
51
|
+
path: "/mcp-manager/templates/:templateId",
|
|
52
|
+
pathParams: params.path,
|
|
53
|
+
headers: params.headers,
|
|
54
|
+
opId: "getMcpServerTemplate",
|
|
55
|
+
expectedContentType: "application/json",
|
|
56
|
+
});
|
|
57
|
+
}
|
|
44
58
|
/**
|
|
45
59
|
* Get a list of MCP server templates
|
|
46
60
|
* Returns a list of templates that can be used to create a new MCP server
|
package/package.json
CHANGED
package/release-notes/latest.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Release Notes 2.2.13-sdk.
|
|
1
|
+
# Release Notes 2.2.13-sdk.8
|
|
2
2
|
|
|
3
3
|
- Current ref: `HEAD`
|
|
4
|
-
- Previous tag: `v2.2.13-sdk.
|
|
5
|
-
- Generated at: 2026-05-
|
|
4
|
+
- Previous tag: `v2.2.13-sdk.8`
|
|
5
|
+
- Generated at: 2026-05-10T18:01:12.444Z
|
|
6
6
|
|
|
7
7
|
## Included Drafts
|
|
8
8
|
|