Watch for call summary

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 /summary/watch
application/json

Body Required

  • uniqueid string Required

    Unique ID of the call to watch

Responses

  • 202 application/json

    Watch started

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
  • 200 application/json

    Watch already active or unavailable

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
  • 400 application/json

    Invalid request

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 403 application/json

    Forbidden - user is not part of the call

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 503 application/json

    Service unavailable

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
POST /summary/watch
curl \
 --request POST 'http://localhost:8080/summary/watch' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"uniqueid":"string"}'
Request examples
{
  "uniqueid": "string"
}
Response examples (202)
{
  "code": 42,
  "message": "string"
}
Response examples (200)
{
  "code": 42,
  "message": "string"
}
Response examples (400)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (403)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (503)
{
  "code": 42,
  "message": "string",
  "error": "string"
}