Promote branch as the default one

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://developers.bump.sh/doc/workspace/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Bump.sh Workspace MCP server": {
  "url": "https://developers.bump.sh/doc/workspace/mcp"
}
Close
PATCH /docs/{doc_id_or_slug}/branches/{slug}/set_default

Path parameters

  • doc_id_or_slug string Required

    UUID or slug of a documentation which can be seen in the Automatic Deployment settings page of your documentation

  • slug string Required

    Slug of a branch which can be seen in the branches settings page of your documentation

Responses

  • 200

    Branch is already the default branch.

  • 204

    Branch is now set to default.

  • 404

    Branch not found

  • 422

    Branch has an empty history

PATCH /docs/{doc_id_or_slug}/branches/{slug}/set_default
curl \
 --request PATCH 'https://bump.sh/api/v1/docs/{doc_id_or_slug}/branches/my-branch/set_default' \
 --header "Authorization: Token $ACCESS_TOKEN"