Account

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://demo.bump.sh/doc/users-account/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "users/account MCP server": {
    "url": "https://demo.bump.sh/doc/users-account/mcp"
  }
}

Close
GET /account

Get the current user account properties.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • username string
    • email string(email)
    • created_at string(date-time)
    • updated_at string(date-time)
    • id string(uuid)
GET /account
curl \
 --request GET 'http://api.mycompany.com/v1/users/account'
Response examples (200)
{
  "username": "string",
  "email": "hello@example.com",
  "created_at": "2026-05-04T09:42:00Z",
  "updated_at": "2026-05-04T09:42:00Z",
  "id": "string"
}