Integrations
ANTEX connects to your site and to your business systems.
For most websites, one short snippet is enough. The API connects ANTEX to applications and business software; MCP makes the same approved knowledge available in compatible ChatGPT and Claude environments.
API and MCP
Connect ANTEX to your applications and business processes.
The API lets websites and applications query an assistant. MCP makes approved sources available in compatible ChatGPT and Claude environments, as well as in other agents and applications.
POST /v1/assistants/asst_7f2/messages
Authorization: Bearer
Content-Type: application/json
{
"message": "Which product suits a high-traffic environment?",
"session": "sess_91ac",
"include": ["sources", "confidence"]
}
{
"answer": "The most suitable options are the Basalto range and the Quarzo range...",
"sources": [
{ "id": "src_a12", "name": "Basalto range data sheet", "type": "pdf", "page": 4 },
{ "id": "src_c07", "name": "Product catalogue 2026", "type": "xlsx" }
],
"confidence": { "level": "high", "score": 0.88 },
"actions": [
{ "label": "Compare the products", "type": "link" }
]
}
{
"tools": [
{
"name": "knowledge.search",
"description": "Searches the authorised sources and returns excerpts with a reference",
"inputSchema": {
"type": "object",
"properties": {
"query": { "type": "string" },
"scope": { "type": "string" },
"limit": { "type": "integer", "default": 5 }
},
"required": ["query"]
}
},
{ "name": "knowledge.get", "description": "Retrieves a document by id" },
{ "name": "knowledge.list", "description": "Lists the sources visible to the client" }
]
}
curl https://api.antex.it/v1/assistants/asst_7f2/messages
-H "Authorization: Bearer $ANTEX_KEY"
-H "Content-Type: application/json"
-d '{ "message": "Which formats can I import?" }'
The application sends a message to the assistant and receives the answer, the sources used and the confidence level.
Sources and confidence level are part of the API response and can be handled by the application that receives it.
MCP exposes read-only tools to external agents, limited to the sources they have permission for.
To try the endpoint from the terminal before writing any code.
Finding out whether ANTEX is right for you takes half an hour.
Tell us which questions you receive and which documents you use. We will work out together whether ANTEX suits your case, and we will say so clearly when it does not.