MCPBundler Docs
MCPBundler Docs
Volver al marketplacePrimeros PasosAutenticacionTutorial - De un Bundle a un Agente Conectado
API Reference
Agent A2A Tools
Agent Channels
Agent Configuration (Staging)
Agent Configuration (Versions)
Agent Tools
Agents
Auth
Billing
Bundler
Bundler Tool
Bundles
Add MCP to BundleCreate BundleRemove MCP from BundleDelete BundleClear Bundle-Entry Credential AssignmentFollow Public BundleGet BundleGet Public BundleList Approved Schema Revisions For A Bundle Entry's ListingUpdate Bundle Entry PermissionsUpdate BundleSet Bundle-Entry Credential AssignmentList BundlesUnfollow Public Bundle
Call Campaigns
Catalog
Conversations
Credentials
Deployments
Discover
Embedding
Fleet
Knowledge Bases
LLM
MCP Listings
Media
OAuth Clients
OAuth2
Observability
Organisations
Realtime
Reviews
Roadmap
SCIM
STT
Suppression
Triggers
TTS
Users
Utils
Voices
Webhooks
Workflows
API ReferenceBundles

Update Bundle Entry Permissions

PATCH
/v1/bundles/{bundle_id}/entries/{entry_id}

Update the tool/resource/prompt allowlists of a bundle entry.

Each allowlist field is only overwritten when explicitly provided (non-None) in the request body, so a client can update a single allowlist without resending the others.

Args: bundle_id: UUID of the bundle that owns the entry. entry_id: UUID of the entry to update. body: Patch payload with optional allowed_tools, allowed_resources, and allowed_prompts lists. version_id, if present in the request body at all (even as explicit null), pins or clears the entry's version pin - unlike the allowlists, an explicit null here is meaningful (unpin back to "always latest"), so it is only applied when the field was actually sent.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Path Parameters

bundle_id*Bundle Id
Formatuuid
entry_id*Entry Id
Formatuuid

Query Parameters

verify_locally?Verify Locally
Defaulttrue

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PATCH "https://example.com/v1/bundles/497f6eca-6276-4993-bfeb-53cbbbba6f08/entries/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{}'
Empty
{  "detail": "string",  "code": "string"}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

List Approved Schema Revisions For A Bundle Entry's Listing

Previous Page

Update Bundle

Next Page

allowed_tools?array<string>|null
allowed_resources?array<string>|null
allowed_prompts?array<string>|null
version_id?|

Pass explicitly (including null) to pin or unpin a version; omit to leave unchanged.

pinned_schema_revision_id?|

Pass explicitly (including null) to pin this entry to a specific McpSchemaRevision, or null to float back to Latest (the listing's current approved revision); omit to leave unchanged.

verify_live_on_connect?|

Escape hatch for a live http/sse entry: when true, the bundler re-verifies against the real upstream at connect time instead of serving the pinned/latest-approved snapshot. Omit to leave unchanged.