List widgets

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://bump.sh/bump-examples/hub/code-samples/doc/rails-hello-openapi/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Rails Hello OpenAPI MCP server": {
  "url": "https://bump.sh/bump-examples/hub/code-samples/doc/rails-hello-openapi/mcp"
}
Close
GET /widgets

Responses

  • 200 application/json

    successful

    Hide headers attribute Show headers attribute
    • Cache-Control string

      This header declares the cacheability of the content so you can skip repeating requests.

    Hide response attributes Show response attributes object
    • id string(uuid)
    • title string
    • created_at string(date-time)
    • updated_at string(date-time)
  • 429

    too many requests

    Hide headers attributes Show headers attributes
    • X-Rate-Limit-Limit integer

      The number of allowed requests in the current period

    • X-Rate-Limit-Remaining integer

      The number of remaining requests in the current period

    • X-Rate-Limit-Reset integer

      The number of seconds left in the current period

GET /widgets
curl \
 --request GET 'https://www.example.com/widgets'
Response examples (200)
[
  {
    "id": 1,
    "title": "Goblin Staff of Sparks"
  }
]