Creates a new 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
POST /users
application/json

Body

  • id string Required

    The user's unique identifier

  • name string

    The user's preferred name

  • email string

    Email address

Responses

  • 201 application/json

    Newly created user

    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

POST /users
curl \
 --request POST 'http://api.example.com/users' \
 --header "Content-Type: application/json" \
 --data '{"id":"string","name":"string","email":"string"}'
Request examples
{
  "id": "string",
  "name": "string",
  "email": "string"
}
Response examples (201)
{
  "id": "string",
  "name": "string",
  "email": "string"
}