Check the API status

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
GET /ping

Responds a pong if the API is up and running.

Responses

  • 200 application/json

    Success

    Hide response attribute Show response attribute object
    • pong string

      Sentence about ping and pong

  • default

    API is currently down

GET /ping
curl \
 --request GET 'https://bump.sh/api/v1/ping'
Response examples (200)
{
  "pong": "And that's how ping-pong ball is bumped"
}