Authentication

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

Http token authentication

success This is the preferred authentication method for restricted access API endpoints

Use the token from your documentation settings in the HTTP token authorization header.

Basic authentication

(Deprecated) Use the token from your documentation settings as the username of the basic auth, with no password.

   

curl \
  -X GET https://bump.sh/api/v1/versions/1 \
  -H "Authorization: Token $ACCESS_TOKEN"

   

curl \
  -X GET https://bump.sh/api/v1/versions/1 \
  -u ":$ACCESS_TOKEN"