Listar índices do cliente

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://api-docs.neppo.com.br/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Neppo API MCP server": {
    "url": "https://api-docs.neppo.com.br/mcp"
  }
}

Close
GET /transformersapi/1.0/list_knowledge_customer_index/{client_hostname}

Listar índices do cliente.

Path parameters

  • client_hostname string Required

    Hostname do ambiente a ser consultado

Query parameters

  • client_username string

    Usuário que está requisitando a API

Responses

  • 200 application/json

    Requisição processada com sucesso. Retorna os dados correspondentes ao filtro informado.

    Hide response attributes Show response attributes object
    • status string
    • usuario string
    • hostname string
    • indices array[string]
  • 400 application/json

    Requisição inválida. Verifique a sintaxe do corpo e os campos obrigatórios.

    Hide response attribute Show response attribute object
    • detail string
  • 401 application/json

    Token de autenticação ausente ou inválido. Envie o header Authorization: Bearer {token}.

    Hide response attribute Show response attribute object
    • status string
  • 404 application/json

    Recurso não encontrado para os parâmetros informados.

    Hide response attribute Show response attribute object
    • detail string
  • 500 application/json

    Erro interno no servidor. Tente novamente mais tarde ou contate o suporte Neppo.

    Hide response attribute Show response attribute object
    • detail string
GET /transformersapi/1.0/list_knowledge_customer_index/{client_hostname}
curl \
 --request GET 'https://api.neppo.com.br/transformersapi/1.0/list_knowledge_customer_index/{client_hostname}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "status": "sucesso",
  "usuario": "usuario@exemplo.com",
  "hostname": "clienteXPTO",
  "indices": [
    "clienteXPTO_faq_data_embeddings_pt",
    "clienteXPTO_produtos_data_embeddings_pt"
  ]
}
Response examples (400)
{
  "detail": "Parâmetros inválidos."
}
Response examples (401)
{
  "status": "Unauthorized"
}
Response examples (404)
{
  "detail": "Nenhum índice encontrado."
}
Response examples (500)
{
  "detail": "Erro interno do servidor."
}