User login

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/nethesis/doc/nethcti-middleware/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"NethVoice - NethCTI middleware MCP server": {
  "url": "https://bump.sh/nethesis/doc/nethcti-middleware/mcp"
}
Close
POST /login
application/json

Body Required

  • username string Required

    User login name

  • password string(password) Required

    User password

Responses

  • 200 application/json

    Successful login

    Hide response attributes Show response attributes object
    • code integer
    • expire string(date-time)
    • token string

      JWT bearer token for subsequent requests

  • 401 application/json

    Invalid credentials

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
POST /login
curl \
 --request POST 'http://localhost:8080/login' \
 --header "Content-Type: application/json" \
 --data '{"username":"string","password":"string"}'
Request examples
{
  "username": "string",
  "password": "string"
}
Response examples (200)
{
  "code": 42,
  "expire": "2026-05-04T09:42:00Z",
  "token": "string"
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}