A new pet arrived

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
POST https://webhook.example.com

A new pet arrived, let's come and discover it IRL.

application/json

Body

Information about a new pet in the system

  • id integer(int64) Required
  • name string Required
  • tag string

Responses

  • 200

    Return a 200 status to indicate that the data was received successfully

POST newPet
Request examples
{
  "id": 42,
  "name": "string",
  "tag": "string"
}