MCPBundler Docs
MCPBundler Docs
Back to marketplaceGetting StartedAuthenticationTutorial - Bundle to Connected Agent
Create PipelineDelete PipelineFetch the JSON Schema for a pipeline config, by module typeGet RunList PipelinesList RunsTrigger a catalog ingestion pipeline run without blockingTrigger a managed catalog ingestion pipelineUpdate Pipeline
Admin Ingestion

Fetch the JSON Schema for a pipeline config, by module type

GET
/v1/admin/ingestion/config-schema/{module_type}

Returns the JSON Schema the given module_type's config is validated against - the frontend renders its config-authoring form directly from this, so the form always matches what create_pipeline/update_pipeline will actually accept. Admin-only.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Path Parameters

module_type*Module Type

Value in

  • "api"
  • "llm_scraper"

Query Parameters

verify_locally?Verify Locally
Defaulttrue

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/admin/ingestion/config-schema/api"
{}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

Delete Pipeline

Previous Page

Get Run

Next Page