MCPBundler Docs
MCPBundler Docs
Volver al marketplacePrimeros PasosAutenticacionTutorial - De un Bundle a un Agente Conectado
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

Trigger a managed catalog ingestion pipeline

POST
/v1/admin/ingestion/{source_slug}/sync

Synchronously runs one managed pipeline (official_registry, composio, or klavis) to completion and returns a run summary. Admin-only.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Path Parameters

source_slug*Source Slug

Query Parameters

updated_since?|

Only official_registry uses this (passed through to its updated_since query param); ignored by composio and klavis, which always resync their full allowlist.

verify_locally?Verify Locally
Defaulttrue

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/admin/ingestion/string/sync"
{  "source_slug": "string",  "candidates_seen": 0,  "listings_created": 0,  "listings_enriched": 0,  "listings_skipped_locked": 0,  "errors": [    "string"  ]}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

Trigger a catalog ingestion pipeline run without blocking

Previous Page

Update Pipeline

Next Page