Returns a single user

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/demo/doc/express-oas-example/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"express-oas-example MCP server": {
  "url": "https://bump.sh/demo/doc/express-oas-example/mcp"
}
Close
GET /users/{id}

Path parameters

  • id string Required

Responses

  • 200 application/json

    User data

    Hide response attributes Show response attributes object
    • id string Required

      The user's unique identifier

    • name string

      The user's preferred name

    • email string

      Email address

GET /users/{id}
curl \
 --request GET 'http://api.example.com/users/{id}'
Response examples (200)
{
  "id": "string",
  "name": "string",
  "email": "string"
}