-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathswagger.yaml
More file actions
1984 lines (1983 loc) · 55.1 KB
/
swagger.yaml
File metadata and controls
1984 lines (1983 loc) · 55.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
components:
schemas:
github_com_stacklok_toolhive-registry-server_internal_config.FilterConfig:
description: Filtering rules
properties:
names:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_config.NameFilterConfig'
tags:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_config.TagFilterConfig'
type: object
github_com_stacklok_toolhive-registry-server_internal_config.NameFilterConfig:
properties:
exclude:
items:
type: string
type: array
uniqueItems: false
include:
items:
type: string
type: array
uniqueItems: false
type: object
github_com_stacklok_toolhive-registry-server_internal_config.SourceType:
description: git, api, file, managed, kubernetes
enum:
- git
- api
- file
- managed
- kubernetes
type: string
x-enum-varnames:
- SourceTypeGit
- SourceTypeAPI
- SourceTypeFile
- SourceTypeManaged
- SourceTypeKubernetes
github_com_stacklok_toolhive-registry-server_internal_config.TagFilterConfig:
properties:
exclude:
items:
type: string
type: array
uniqueItems: false
include:
items:
type: string
type: array
uniqueItems: false
type: object
github_com_stacklok_toolhive-registry-server_internal_service.CreationType:
description: API or CONFIG
enum:
- API
- CONFIG
type: string
x-enum-varnames:
- CreationTypeAPI
- CreationTypeCONFIG
github_com_stacklok_toolhive-registry-server_internal_service.EntryVersionInfo:
properties:
createdAt:
type: string
description:
type: string
title:
type: string
updatedAt:
type: string
version:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.RegistryEntriesResponse:
properties:
entries:
items:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.RegistryEntryInfo'
type: array
uniqueItems: false
type: object
github_com_stacklok_toolhive-registry-server_internal_service.RegistryEntryInfo:
properties:
createdAt:
type: string
description:
type: string
entryType:
type: string
name:
type: string
position:
type: integer
sourceName:
type: string
title:
type: string
updatedAt:
type: string
version:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.RegistryInfo:
properties:
claims:
additionalProperties: {}
type: object
createdAt:
type: string
creationType:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.CreationType'
name:
type: string
sources:
items:
type: string
type: array
uniqueItems: false
updatedAt:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.Skill:
properties:
_meta:
additionalProperties: {}
type: object
allowedTools:
items:
type: string
type: array
uniqueItems: false
compatibility:
type: string
createdAt:
type: string
description:
type: string
icons:
items:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.SkillIcon'
type: array
uniqueItems: false
id:
type: string
isLatest:
type: boolean
license:
type: string
metadata:
additionalProperties: {}
type: object
name:
type: string
namespace:
type: string
packages:
items:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.SkillPackage'
type: array
uniqueItems: false
repository:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.SkillRepository'
status:
type: string
title:
type: string
updatedAt:
type: string
version:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SkillIcon:
properties:
label:
type: string
size:
type: string
src:
type: string
type:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SkillPackage:
properties:
commit:
type: string
digest:
type: string
identifier:
type: string
mediaType:
type: string
ref:
type: string
registryType:
type: string
subfolder:
type: string
url:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SkillRepository:
properties:
type:
type: string
url:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SourceEntriesResponse:
properties:
entries:
items:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.SourceEntryInfo'
type: array
uniqueItems: false
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SourceEntryInfo:
properties:
claims:
additionalProperties: {}
type: object
entryType:
type: string
name:
type: string
versions:
items:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.EntryVersionInfo'
type: array
uniqueItems: false
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SourceInfo:
properties:
claims:
additionalProperties: {}
description: Authorization claims
type: object
createdAt:
type: string
creationType:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.CreationType'
filterConfig:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_config.FilterConfig'
name:
type: string
sourceConfig:
description: Type-specific source configuration
sourceType:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_config.SourceType'
syncSchedule:
description: Sync interval string
type: string
syncStatus:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.SourceSyncStatus'
type:
description: MANAGED, FILE, REMOTE, KUBERNETES
type: string
updatedAt:
type: string
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SourceListResponse:
properties:
sources:
items:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.SourceInfo'
type: array
uniqueItems: false
type: object
github_com_stacklok_toolhive-registry-server_internal_service.SourceSyncStatus:
properties:
attemptCount:
description: Number of sync attempts
type: integer
lastAttempt:
description: Last sync attempt
type: string
lastSyncTime:
description: Last completed sync attempt
type: string
message:
description: Status or error message
type: string
phase:
description: complete, syncing, failed
type: string
serverCount:
description: Number of servers in registry
type: integer
skillCount:
description: Number of skills in registry
type: integer
type: object
internal_api_v1.meResponse:
properties:
roles:
items:
type: string
type: array
uniqueItems: false
subject:
type: string
type: object
internal_api_v1.publishEntryRequest:
properties:
claims:
additionalProperties: {}
type: object
server:
$ref: '#/components/schemas/v0.ServerJSON'
skill:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.Skill'
type: object
internal_api_v1.registryListResponse:
properties:
registries:
items:
$ref: '#/components/schemas/github_com_stacklok_toolhive-registry-server_internal_service.RegistryInfo'
type: array
uniqueItems: false
type: object
internal_api_v1.updateEntryClaimsRequest:
properties:
claims:
additionalProperties: {}
type: object
type: object
internal_api_x_skills.SkillListMetadata:
properties:
count:
type: integer
nextCursor:
type: string
type: object
internal_api_x_skills.SkillListResponse:
properties:
metadata:
$ref: '#/components/schemas/internal_api_x_skills.SkillListMetadata'
skills:
items:
$ref: '#/components/schemas/registry.Skill'
type: array
uniqueItems: false
type: object
model.Argument:
properties:
choices:
items:
type: string
type: array
uniqueItems: false
default:
type: string
description:
type: string
format:
$ref: '#/components/schemas/model.Format'
isRepeated:
type: boolean
isRequired:
type: boolean
isSecret:
type: boolean
name:
example: --port
type: string
placeholder:
type: string
type:
$ref: '#/components/schemas/model.ArgumentType'
value:
type: string
valueHint:
example: file_path
type: string
variables:
additionalProperties:
$ref: '#/components/schemas/model.Input'
type: object
type: object
model.ArgumentType:
enum:
- positional
- named
example: positional
type: string
x-enum-varnames:
- ArgumentTypePositional
- ArgumentTypeNamed
model.Format:
enum:
- string
- number
- boolean
- filepath
type: string
x-enum-varnames:
- FormatString
- FormatNumber
- FormatBoolean
- FormatFilePath
model.Icon:
properties:
mimeType:
example: image/png
type: string
sizes:
items:
type: string
type: array
uniqueItems: false
src:
example: https://example.com/icon.png
format: uri
maxLength: 255
type: string
theme:
type: string
type: object
model.Input:
properties:
choices:
items:
type: string
type: array
uniqueItems: false
default:
type: string
description:
type: string
format:
$ref: '#/components/schemas/model.Format'
isRequired:
type: boolean
isSecret:
type: boolean
placeholder:
type: string
value:
type: string
type: object
model.KeyValueInput:
properties:
choices:
items:
type: string
type: array
uniqueItems: false
default:
type: string
description:
type: string
format:
$ref: '#/components/schemas/model.Format'
isRequired:
type: boolean
isSecret:
type: boolean
name:
example: SOME_VARIABLE
type: string
placeholder:
type: string
value:
type: string
variables:
additionalProperties:
$ref: '#/components/schemas/model.Input'
type: object
type: object
model.Package:
properties:
environmentVariables:
description: EnvironmentVariables are set when running the package
items:
$ref: '#/components/schemas/model.KeyValueInput'
type: array
uniqueItems: false
fileSha256:
description: FileSHA256 is the SHA-256 hash for integrity verification (required
for mcpb, optional for others)
example: fe333e598595000ae021bd27117db32ec69af6987f507ba7a63c90638ff633ce
pattern: ^[a-f0-9]{64}$
type: string
identifier:
description: |-
Identifier is the package identifier:
- For NPM/PyPI/NuGet: package name or ID
- For OCI: full image reference (e.g., "ghcr.io/owner/repo:v1.0.0")
- For MCPB: direct download URL
example: '@modelcontextprotocol/server-brave-search'
minLength: 1
type: string
packageArguments:
description: PackageArguments are passed to the package's binary
items:
$ref: '#/components/schemas/model.Argument'
type: array
uniqueItems: false
registryBaseUrl:
description: RegistryBaseURL is the base URL of the package registry (used
by npm, pypi, nuget; not used by oci, mcpb)
example: https://registry.npmjs.org
format: uri
type: string
registryType:
description: RegistryType indicates how to download packages (e.g., "npm",
"pypi", "oci", "nuget", "mcpb")
example: npm
minLength: 1
type: string
runtimeArguments:
description: RuntimeArguments are passed to the package's runtime command
(e.g., docker, npx)
items:
$ref: '#/components/schemas/model.Argument'
type: array
uniqueItems: false
runtimeHint:
description: RunTimeHint suggests the appropriate runtime for the package
example: npx
type: string
transport:
$ref: '#/components/schemas/model.Transport'
version:
description: Version is the package version (required for npm, pypi, nuget;
optional for mcpb; not used by oci where version is in the identifier)
example: 1.0.2
maxLength: 255
minLength: 1
type: string
type: object
model.Repository:
properties:
id:
example: b94b5f7e-c7c6-d760-2c78-a5e9b8a5b8c9
type: string
source:
example: github
type: string
subfolder:
example: src/everything
type: string
url:
example: https://github.com/modelcontextprotocol/servers
format: uri
type: string
type: object
model.Status:
enum:
- active
- deprecated
- deleted
type: string
x-enum-varnames:
- StatusActive
- StatusDeprecated
- StatusDeleted
model.Transport:
description: Transport is required and specifies the transport protocol configuration
properties:
headers:
items:
$ref: '#/components/schemas/model.KeyValueInput'
type: array
uniqueItems: false
type:
example: stdio
type: string
url:
example: https://api.example.com/mcp
type: string
variables:
additionalProperties:
$ref: '#/components/schemas/model.Input'
type: object
type: object
registry.Skill:
properties:
_meta:
additionalProperties: {}
description: Meta is an opaque payload with extended meta data details of
the skill.
type: object
allowedTools:
description: |-
AllowedTools is the list of tools that the skill is compatible with.
This is experimental.
items:
type: string
type: array
uniqueItems: false
compatibility:
description: Compatibility is the environment requirements of the skill.
type: string
description:
description: Description is the description of the skill.
type: string
icons:
description: Icons is the list of icons for the skill.
items:
$ref: '#/components/schemas/registry.SkillIcon'
type: array
uniqueItems: false
license:
description: License is the SPDX license identifier of the skill.
type: string
metadata:
additionalProperties: {}
description: |-
Metadata is the official metadata of the skill as reported in the
SKILL.md file.
type: object
name:
description: |-
Name is the name of the skill.
The format is that of identifiers, e.g. "my-skill".
type: string
namespace:
description: |-
Namespace is the namespace of the skill.
The format is reverse-DNS, e.g. "io.github.user".
type: string
packages:
description: Packages is the list of packages for the skill.
items:
$ref: '#/components/schemas/registry.SkillPackage'
type: array
uniqueItems: false
repository:
$ref: '#/components/schemas/registry.SkillRepository'
status:
description: |-
Status is the status of the skill.
Can be one of "active", "deprecated", or "archived".
type: string
title:
description: |-
Title is the title of the skill.
This is for human consumption, not an identifier.
type: string
version:
description: |-
Version is the version of the skill.
Any non-empty string is valid, but ideally it should be either a
semantic version or a commit hash.
type: string
type: object
registry.SkillIcon:
properties:
label:
description: Label is the label of the icon.
type: string
size:
description: Size is the size of the icon.
type: string
src:
description: Src is the source of the icon.
type: string
type:
description: Type is the type of the icon.
type: string
type: object
registry.SkillPackage:
properties:
commit:
description: Commit is the commit of the package.
type: string
digest:
description: Digest is the digest of the package.
type: string
identifier:
description: Identifier is the OCI identifier of the package.
type: string
mediaType:
description: MediaType is the media type of the package.
type: string
ref:
description: Ref is the reference of the package.
type: string
registryType:
description: |-
RegistryType is the type of registry the package is from.
Can be "oci" or "git".
type: string
subfolder:
description: Subfolder is the subfolder of the package.
type: string
url:
description: URL is the URL of the package.
type: string
type: object
registry.SkillRepository:
description: Repository is the source repository of the skill.
properties:
type:
description: Type is the type of the repository.
type: string
url:
description: URL is the URL of the repository.
type: string
type: object
v0.Metadata:
properties:
count:
type: integer
nextCursor:
type: string
type: object
v0.RegistryExtensions:
properties:
isLatest:
type: boolean
publishedAt:
format: date-time
type: string
status:
$ref: '#/components/schemas/model.Status'
statusChangedAt:
format: date-time
type: string
statusMessage:
type: string
updatedAt:
format: date-time
type: string
type: object
v0.ResponseMeta:
properties:
io.modelcontextprotocol.registry/official:
$ref: '#/components/schemas/v0.RegistryExtensions'
type: object
v0.ServerJSON:
properties:
$schema:
example: https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json
format: uri
minLength: 1
type: string
_meta:
$ref: '#/components/schemas/v0.ServerMeta'
description:
example: MCP server providing weather data and forecasts via OpenWeatherMap
API
maxLength: 100
minLength: 1
type: string
icons:
items:
$ref: '#/components/schemas/model.Icon'
type: array
uniqueItems: false
name:
example: io.github.user/weather
maxLength: 200
minLength: 3
pattern: ^[a-zA-Z0-9.-]+/[a-zA-Z0-9._-]+$
type: string
packages:
items:
$ref: '#/components/schemas/model.Package'
type: array
uniqueItems: false
remotes:
items:
$ref: '#/components/schemas/model.Transport'
type: array
uniqueItems: false
repository:
$ref: '#/components/schemas/model.Repository'
title:
example: Weather API
maxLength: 100
minLength: 1
type: string
version:
example: 1.0.2
maxLength: 255
minLength: 1
type: string
websiteUrl:
example: https://modelcontextprotocol.io/examples
format: uri
type: string
type: object
v0.ServerListResponse:
properties:
metadata:
$ref: '#/components/schemas/v0.Metadata'
servers:
items:
$ref: '#/components/schemas/v0.ServerResponse'
type: array
uniqueItems: false
type: object
v0.ServerMeta:
properties:
io.modelcontextprotocol.registry/publisher-provided:
additionalProperties: {}
type: object
type: object
v0.ServerResponse:
properties:
_meta:
$ref: '#/components/schemas/v0.ResponseMeta'
server:
$ref: '#/components/schemas/v0.ServerJSON'
type: object
securitySchemes:
BearerAuth:
description: 'OAuth 2.0 Bearer token authentication. Format: "Bearer {token}"'
in: header
name: Authorization
type: apiKey
externalDocs:
description: ""
url: ""
info:
contact:
url: https://github.com/stacklok/toolhive
description: |-
API for accessing MCP server registry data and deployed server information
This API provides endpoints to query the MCP (Model Context Protocol) server registry,
get information about available servers, and check the status of deployed servers.
Authentication is required by default. Use Bearer token authentication with a valid
OAuth/OIDC access token. The /.well-known/oauth-protected-resource endpoint provides
OAuth discovery metadata (RFC 9728).
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
title: ToolHive Registry API
version: "0.1"
openapi: 3.1.0
paths:
/openapi.json:
get:
description: Get the OpenAPI 3.1.0 specification for this API
responses:
"200":
content:
application/json:
schema:
type: object
description: OpenAPI 3.1.0 specification
"500":
content:
application/json:
schema:
additionalProperties:
type: string
type: object
description: Internal Server Error
summary: OpenAPI specification
tags:
- system
/registry/{registryName}/v0.1/servers:
get:
description: Get a list of available servers from a specific registry
parameters:
- description: Registry name
in: path
name: registryName
required: true
schema:
type: string
- description: Pagination cursor for retrieving next set of results
in: query
name: cursor
schema:
type: string
- description: Maximum number of items to return
in: query
name: limit
schema:
type: integer
- description: Search servers by name (substring match)
in: query
name: search
schema:
type: string
- description: Filter by version ('latest' for latest version, or an exact version
like '1.2.3')
in: query
name: version
schema:
type: string
requestBody:
content:
application/json:
schema:
type: object
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/v0.ServerListResponse'
description: OK
"400":
content:
application/json:
schema:
additionalProperties:
type: string
type: object
description: Bad request
"401":
content:
application/json:
schema:
additionalProperties:
type: string
type: object
description: Unauthorized
"404":
content:
application/json:
schema:
additionalProperties:
type: string
type: object
description: Registry not found
security:
- BearerAuth: []
summary: List servers in specific registry
tags:
- registry
/registry/{registryName}/v0.1/servers/{serverName}/versions:
get:
description: Returns all available versions for a specific MCP server from a
specific registry
parameters:
- description: Registry name
in: path
name: registryName
required: true
schema:
type: string
- description: URL-encoded server name (e.g., \
in: path
name: serverName
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
type: object
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/v0.ServerListResponse'
description: A list of all versions for the server
"400":
content:
application/json:
schema:
additionalProperties:
type: string
type: object
description: Bad request
"401":
content:
application/json:
schema:
additionalProperties:
type: string
type: object
description: Unauthorized
"404":
content:
application/json:
schema:
additionalProperties:
type: string
type: object
description: Server not found
security:
- BearerAuth: []
summary: List all versions of an MCP server in specific registry
tags:
- registry
/registry/{registryName}/v0.1/servers/{serverName}/versions/{version}:
get:
description: |-
Returns detailed information about a specific version of an MCP server from a specific registry.
Use the special version `latest` to get the latest version.
parameters:
- description: Registry name
in: path
name: registryName
required: true
schema:
type: string
- description: URL-encoded server name (e.g., \
in: path
name: serverName