Create widget

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
POST /widgets
application/json

Body

  • title string Required

Responses

  • 200

    successful

  • 422 application/json

    unprocessable entity

    Hide response attribute Show response attribute object
    • errors array[object]
      Hide errors attributes Show errors attributes object
      • title string
      • detail string
      • code string
POST /widgets
curl \
 --request POST 'https://www.example.com/widgets' \
 --header "Content-Type: application/json" \
 --data '{"title":"string"}'
Request examples
{
  "title": "string"
}
Response examples (422)
{
  "errors": [
    {
      "title": "string",
      "detail": "string",
      "code": "string"
    }
  ]
}