MCPBundler Docs
MCPBundler Docs
Back to marketplaceGetting StartedAuthenticationTutorial - Bundle to Connected Agent
Add MCP to BundleCreate BundleRemove MCP from BundleDelete BundleFollow Public BundleGet BundleGet Public BundleUpdate Bundle Entry PermissionsUpdate BundleList BundlesUnfollow Public Bundle
Bundles

Remove MCP from Bundle

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

Remove an MCP listing entry from a bundle.

Deleting an entry that does not exist (or belongs to a different bundle) is a silent no-op rather than a 404, since the end state the caller wants - the entry being gone - is already true.

Args: bundle_id: UUID of the bundle that owns the entry. entry_id: UUID of the entry to remove.

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

Response Body

application/json

application/json

curl -X DELETE "https://example.com/v1/bundles/497f6eca-6276-4993-bfeb-53cbbbba6f08/entries/497f6eca-6276-4993-bfeb-53cbbbba6f08"
Empty
{  "detail": "string",  "code": "string"}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

Create Bundle

Previous Page

Delete Bundle

Next Page