Which Marketplaces Are Loaded
marketplace_sourcesCheck which marketplace connectors are mounted and which were skipped due to missing dependencies, so you can tell a source with no results from one never queried.
Instructions
List which connectors this unified server actually mounted.
Why this exists
Connectors are imported defensively, so a missing dependency removes a
marketplace instead of killing the server. That is the right failure mode,
but it is invisible from the client: absent tools look the same as a source
that simply found nothing. Call this before concluding a marketplace has no
results — if it is in skipped, it was never queried at all.
Return Format
MarketplaceSourcesResponse: {mounted, skipped, mounted_count, skipped_count,
server_version}. skipped maps source name to the import error that
removed it, which is usually a missing optional dependency.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mounted | No | Sources whose tools are available in this server. | |
| skipped | No | Source name mapped to the import error that removed it — usually a missing dependency. | |
| mounted_count | No | How many sources mounted. | |
| skipped_count | No | How many sources were skipped. | |
| server_version | No | Unified server version. |