MCP / SSE
MCP (Model Context Protocol) is a protocol that lets AI models access tools and data sources in a standard way. Qevron exposes endpoints that MCP clients can connect to.
Endpoints
| Endpoint | Description |
|---|---|
/mcp | MCP protocol endpoint |
/sse | Server-Sent Events connection (streaming communication) |
/message | Message-sending endpoint |
These endpoints live under https://app.qevron.ai.
What is SSE?
SSE (Server-Sent Events) lets the server send a one-way, continuous data stream to the client. MCP uses this channel for tool calls and event notifications. For the general idea of streaming, see Streaming.
When to use it
- When the model needs to call external tools (file system, database, APIs).
- When an MCP-compatible client (e.g. desktop AI apps) connects to Qevron.
Connecting
Point your MCP-compatible client at Qevron's /sse or /mcp endpoint as the server address, and authenticate with Authorization: Bearer sk-....
TIP
MCP is an advanced topic for most users. For standard chat/embedding/image needs, the endpoints in the API Reference are sufficient.