List all pets

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/doc/webhook-example/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"webhook-example MCP server": {
  "url": "https://bump.sh/bump/doc/webhook-example/mcp"
}
Close
GET /pets

Query parameters

  • limit integer(int32)

    How many items to return at one time (max 100)

Responses

  • 200 application/json

    A paged array of pets

    Hide response attributes Show response attributes object
    • id integer(int64) Required
    • name string Required
    • tag string
GET /pets
curl \
 --request GET 'http://api.example.com/pets'
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "tag": "string"
  }
]