Skip to content

Connect Your Assistant

Copy page

This is the no-code path. Point an MCP-compatible AI assistant — Claude Desktop, Claude on the web, Cursor, or any other MCP client — at Divinci’s hosted server, sign in once in your browser, and the assistant can search your knowledge base, read and send chats, and operate on the rest of your account through the tool catalog.

You do not need the @divinci-ai/mcp package, an API key, or any code for this. (If you’re building your own agent in TypeScript, use the SDK client instead.)

Divinci runs the MCP server at one endpoint per environment. Use production unless you’ve been told otherwise.

EnvironmentStreamable HTTP (preferred)SSE (legacy)
Productionhttps://mcp.divinci.app/mcphttps://mcp.divinci.app/sse
Staginghttps://mcp.stage.divinci.app/mcphttps://mcp.stage.divinci.app/sse
Devhttps://mcp.dev.divinci.app/mcphttps://mcp.dev.divinci.app/sse

In Claude on the web, open Settings → Connectors → Add custom connector, then paste the server URL:

https://mcp.divinci.app/mcp

Claude registers itself automatically (Dynamic Client Registration) and opens a Divinci sign-in window. After you approve, the Divinci tools appear in the connectors menu.

  1. Connect. Your client opens a Divinci sign-in window the first time it reaches the server.

  2. Authorize. Sign in with your Divinci (Auth0) account and approve access. The assistant connects on behalf of your identity, so it can only see and change what your account is permitted to.

  3. Use the tools. The assistant now lists Divinci tools and can call them. Try: “Search my Divinci knowledge base for refund policy” or “List my Divinci releases.”

There is no API key in the config — authentication is OAuth 2.0 (Auth0, PKCE). The browser flow runs on first connect and the client refreshes tokens silently after that.

If your client can’t do an interactive browser flow — a headless agent, a CI job — use a Bearer API key from the API Keys page of your Divinci workspace instead of OAuth:

{
"mcpServers": {
"divinci": {
"url": "https://mcp.divinci.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_DIVINCI_API_KEY"
}
}
}
}

The API key’s permissions scope exactly what the assistant can do — the same permission model as the OAuth identity.

Everything your account is permitted to — knowledge-base search, chat, releases, RAG ingestion, fine-tuning, QA, analytics, notifications, and more. See the full list: