@@ -6,8 +6,6 @@ import type {
66 DeleteByRegistryNameV01ServersByServerNameVersionsByVersionData ,
77 DeleteByRegistryNameV01ServersByServerNameVersionsByVersionErrors ,
88 DeleteByRegistryNameV01ServersByServerNameVersionsByVersionResponses ,
9- DeleteExtensionV0RegistriesByRegistryNameData ,
10- DeleteExtensionV0RegistriesByRegistryNameErrors ,
119 GetExtensionV0RegistriesByRegistryNameData ,
1210 GetExtensionV0RegistriesByRegistryNameErrors ,
1311 GetExtensionV0RegistriesByRegistryNameResponses ,
@@ -47,10 +45,6 @@ import type {
4745 PostByRegistryNameV01PublishResponses ,
4846 PostRegistryV01PublishData ,
4947 PostRegistryV01PublishErrors ,
50- PutExtensionV0RegistriesByRegistryNameData ,
51- PutExtensionV0RegistriesByRegistryNameErrors ,
52- PutExtensionV0RegistriesByRegistryNameServersByServerNameVersionsByVersionData ,
53- PutExtensionV0RegistriesByRegistryNameServersByServerNameVersionsByVersionErrors ,
5448} from "./types.gen" ;
5549
5650export type Options <
@@ -92,30 +86,6 @@ export const getExtensionV0Registries = <ThrowOnError extends boolean = false>(
9286 } ,
9387 } ) ;
9488
95- /**
96- * Delete registry
97- *
98- * Delete a registry
99- */
100- export const deleteExtensionV0RegistriesByRegistryName = <
101- ThrowOnError extends boolean = false ,
102- > (
103- options : Options < DeleteExtensionV0RegistriesByRegistryNameData , ThrowOnError > ,
104- ) =>
105- ( options . client ?? client ) . delete <
106- unknown ,
107- DeleteExtensionV0RegistriesByRegistryNameErrors ,
108- ThrowOnError
109- > ( {
110- security : [ { name : "Authorization" , type : "apiKey" } ] ,
111- url : "/extension/v0/registries/{registryName}" ,
112- ...options ,
113- headers : {
114- "Content-Type" : "application/json" ,
115- ...options . headers ,
116- } ,
117- } ) ;
118-
11989/**
12090 * Get registry
12191 *
@@ -140,56 +110,6 @@ export const getExtensionV0RegistriesByRegistryName = <
140110 } ,
141111 } ) ;
142112
143- /**
144- * Create or update registry
145- *
146- * Create or update a registry
147- */
148- export const putExtensionV0RegistriesByRegistryName = <
149- ThrowOnError extends boolean = false ,
150- > (
151- options : Options < PutExtensionV0RegistriesByRegistryNameData , ThrowOnError > ,
152- ) =>
153- ( options . client ?? client ) . put <
154- unknown ,
155- PutExtensionV0RegistriesByRegistryNameErrors ,
156- ThrowOnError
157- > ( {
158- security : [ { name : "Authorization" , type : "apiKey" } ] ,
159- url : "/extension/v0/registries/{registryName}" ,
160- ...options ,
161- headers : {
162- "Content-Type" : "application/json" ,
163- ...options . headers ,
164- } ,
165- } ) ;
166-
167- /**
168- * Create or update server
169- *
170- * Create or update a server in the registry
171- */
172- export const putExtensionV0RegistriesByRegistryNameServersByServerNameVersionsByVersion =
173- < ThrowOnError extends boolean = false > (
174- options : Options <
175- PutExtensionV0RegistriesByRegistryNameServersByServerNameVersionsByVersionData ,
176- ThrowOnError
177- > ,
178- ) =>
179- ( options . client ?? client ) . put <
180- unknown ,
181- PutExtensionV0RegistriesByRegistryNameServersByServerNameVersionsByVersionErrors ,
182- ThrowOnError
183- > ( {
184- security : [ { name : "Authorization" , type : "apiKey" } ] ,
185- url : "/extension/v0/registries/{registryName}/servers/{serverName}/versions/{version}" ,
186- ...options ,
187- headers : {
188- "Content-Type" : "application/json" ,
189- ...options . headers ,
190- } ,
191- } ) ;
192-
193113/**
194114 * Health check
195115 *
@@ -232,7 +152,7 @@ export const getReadiness = <ThrowOnError extends boolean = false>(
232152 > ( { url : "/readiness" , ...options } ) ;
233153
234154/**
235- * Publish server
155+ * Publish server (not supported)
236156 *
237157 * Publish a server to the registry. This server does not support publishing via this endpoint.
238158 * Use the registry-specific endpoint /{registryName}/v0.1/publish instead.
@@ -255,9 +175,9 @@ export const postRegistryV01Publish = <ThrowOnError extends boolean = false>(
255175 } ) ;
256176
257177/**
258- * List servers
178+ * List servers (aggregated)
259179 *
260- * Get a list of available servers in the registry
180+ * Get a list of available servers from all registries (aggregated view)
261181 */
262182export const getRegistryV01Servers = < ThrowOnError extends boolean = false > (
263183 options ?: Options < GetRegistryV01ServersData , ThrowOnError > ,
@@ -277,9 +197,9 @@ export const getRegistryV01Servers = <ThrowOnError extends boolean = false>(
277197 } ) ;
278198
279199/**
280- * List all versions of an MCP server
200+ * List all versions of an MCP server (aggregated)
281201 *
282- * Returns all available versions for a specific MCP server, ordered by publication date (newest first )
202+ * Returns all available versions for a specific MCP server from all registries (aggregated view )
283203 */
284204export const getRegistryV01ServersByServerNameVersions = <
285205 ThrowOnError extends boolean = false ,
@@ -301,9 +221,9 @@ export const getRegistryV01ServersByServerNameVersions = <
301221 } ) ;
302222
303223/**
304- * Get specific MCP server version
224+ * Get specific MCP server version (aggregated)
305225 *
306- * Returns detailed information about a specific version of an MCP server.
226+ * Returns detailed information about a specific version of an MCP server from all registries .
307227 * Use the special version `latest` to get the latest version.
308228 */
309229export const getRegistryV01ServersByServerNameVersionsByVersion = <
@@ -329,9 +249,9 @@ export const getRegistryV01ServersByServerNameVersionsByVersion = <
329249 } ) ;
330250
331251/**
332- * List servers
252+ * List servers in specific registry
333253 *
334- * Get a list of available servers in the registry
254+ * Get a list of available servers from a specific registry
335255 */
336256export const getRegistryByRegistryNameV01Servers = <
337257 ThrowOnError extends boolean = false ,
@@ -353,9 +273,9 @@ export const getRegistryByRegistryNameV01Servers = <
353273 } ) ;
354274
355275/**
356- * List all versions of an MCP server
276+ * List all versions of an MCP server in specific registry
357277 *
358- * Returns all available versions for a specific MCP server, ordered by publication date (newest first)
278+ * Returns all available versions for a specific MCP server from a specific registry
359279 */
360280export const getRegistryByRegistryNameV01ServersByServerNameVersions = <
361281 ThrowOnError extends boolean = false ,
@@ -380,9 +300,9 @@ export const getRegistryByRegistryNameV01ServersByServerNameVersions = <
380300 } ) ;
381301
382302/**
383- * Get specific MCP server version
303+ * Get specific MCP server version in specific registry
384304 *
385- * Returns detailed information about a specific version of an MCP server.
305+ * Returns detailed information about a specific version of an MCP server from a specific registry .
386306 * Use the special version `latest` to get the latest version.
387307 */
388308export const getRegistryByRegistryNameV01ServersByServerNameVersionsByVersion =
0 commit comments