MCPBundler Docs
MCPBundler Docs
Back to marketplaceGetting StartedAuthenticationTutorial - Bundle to Connected Agent
API Reference
Auth
Bundler
Bundles
Catalog
Deployments
Discover
LLM
MCP Listing Claims
MCP Listings
OAuth2
Observability
Organisations
Claim Organisation DomainCreate Org Vault EntryCreate OrganisationDelete Org LLM BindingDelete Org Vault EntryDelete OrganisationDelete SSO ConfigDisable SCIMGenerate SCIM TokenGet OrganisationGet SCIM StatusGet SSO ConfigInvite Organisation MemberList Organisation DomainsList Organisation MembersList My OrganisationsList Organisation BundlesList Organisation ListingsList Org LLM BindingsList Org Vault EntriesList SCIM Role MappingsRemove Organisation DomainRemove Organisation MemberReplace SCIM Role MappingsSave SSO ConfigSync SCIM UsersUpdate Member RoleUpdate Org Vault EntryUpdate OrganisationUpdate Organisation PolicyUpsert Org LLM BindingVerify Organisation Domain
Reviews
Roadmap
SCIM
Users
Utils
Vault
Webhooks
API ReferenceOrganisations

Generate SCIM Token

Setting up SCIM provisioning for an organisation:

  1. POST /organisations/{org_id}/scim/token (this endpoint) - mint a bearer token. The plaintext value is returned exactly once; only its hash is stored, so save it now.
  2. Configure the identity provider (Okta, Azure AD, ...) with the returned scim_base_url and token.
  3. PUT /organisations/{org_id}/scim/role-mappings - define which SCIM group maps to which organisation role, if group-based roles are wanted.
  4. POST /organisations/{org_id}/scim/sync - recompute existing users' roles against the mapping table; role-mapping changes are not applied retroactively without this.

Regenerating the token immediately invalidates the previous one.

POST
/v1/organisations/{org_id}/scim/token

Generate (or rotate) the organisation's SCIM bearer token.

Authorization: caller must be the owner.

The plaintext token is returned exactly once - only its hash is stored. Rotating invalidates any previously issued token immediately.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Path Parameters

org_id*Org Id
Formatuuid

Query Parameters

verify_locally?Verify Locally
Defaulttrue

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/organisations/497f6eca-6276-4993-bfeb-53cbbbba6f08/scim/token"
{  "token": "string",  "scim_base_url": "string"}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

Disable SCIM

Previous Page

Get Organisation

Next Page