Zero-install transport
Use one HTTPS endpoint from any client that supports Streamable HTTP MCP.
Official hosted service
Connect any Streamable HTTP MCP client to the QVeris capability network. No local process, package install, or separate provider credentials.
https://mcp.qveris.ai/mcpUse one HTTPS endpoint from any client that supports Streamable HTTP MCP.
Discover, inspect, and call capabilities through the same three stable MCP tools.
Each session is bound to one API key and cannot switch credentials after initialization.
Open Dashboard / API Keys and create a key for your agent.
Use the endpoint below and send your key as a Bearer token on every request.
Reconnect your client and confirm that discover, inspect, and call appear.
Use this JSON shape in clients that accept remote MCP server configuration. Keep the key in a secret or environment variable when your client supports it.
Replace YOUR_QVERIS_API_KEY locally. Never commit an API key to source control.
{
"mcpServers": {
"qveris": {
"type": "http",
"url": "https://mcp.qveris.ai/mcp",
"headers": {
"Authorization": "Bearer YOUR_QVERIS_API_KEY"
}
}
}
}claude mcp add --transport http qveris https://mcp.qveris.ai/mcp --scope user --header "Authorization: Bearer YOUR_QVERIS_API_KEY"The server validates the key when a session starts. A 401 means the key is missing or invalid; a 503 means validation is temporarily unavailable. If your key changes, start a new MCP session.
Need an offline local process instead? The open-source stdio package remains available in the MCP Server guide.