Your company's brain for AI agents. Cited, permission-aware knowledge across every system.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Quelvio MCP server β search your company's connected knowledge from any AI tool that speaks the Model Context Protocol.
Endpoint: https://mcp.quelvio.com/http (Streamable HTTP, MCP spec 2025-03-26)
Source: Quelvio/quelvio-mcp-server
License: MIT
| Tool | Purpose | Knowledge Tokens |
|---|---|---|
query_knowledge | Primary search across the tenant's connected sources (Drive, SharePoint, Confluence, Slack, Notion). Modes: fast, standard (default), deep. | 1,500 kT (fast) / 12,500 kT (standard) / 25,000 kT (deep) |
list_domains | Discovery β list taxonomy domains with coverage levels. Use to decide whether the brain has relevant knowledge before issuing a billable query. | 0 kT |
get_source_detail | Per-chunk provenance for a previous query: document path, lifecycle state, embedding timestamp, contributor, last-updated. Pass a query_id from an earlier query_knowledge response. | 0 kT |
Every MCP query is scoped to your individual employee identity, not just your tenant. The server applies the same three-layer access model the dashboard uses:
permission_emails on every chunk, resolved at ingest time from the source system's ACLs (Google Drive shares, SharePoint groups, Confluence space restrictions). MCP queries see only what your individual account would see in those source systems.The source-permission filter is unconditional β there is no flag, env var, or dashboard toggle that disables it. The MCP server records the per-employee identity on every query so cross-employee provenance inspection via get_source_detail is rejected with 404 (only Owner/Admin can view another member's queries).
There is no API key to provision. The first time you use Quelvio MCP from any client, you'll be redirected to your organization's sign-in page (Clerk-hosted, the same one the dashboard uses). After signing in, your client resumes automatically. Subsequent queries reuse the OAuth token until it expires (~30 days) or you revoke it from enterprise.quelvio.com.
If your AI assistant prompts you for a "Bearer token" or "API key" header in the JSON config, you have an outdated configuration β delete the headers block and let your client manage OAuth. The migration is automatic: the next time you invoke a tool, the client opens a browser tab for sign-in.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Restart Claude Desktop. On first use Claude opens a browser tab pointing at Clerk's hosted sign-in page; complete sign-in and Claude resumes automatically.
Add to .cursor/mcp.json in your project root (or globally at ~/.cursor/mcp.json):
Cursor handles the OAuth round-trip the same way Claude does.
Add to .vscode/mcp.json:
For MCP clients that don't speak Streamable HTTP yet, install the npm package:
Then point your client at the binary:
The binary opens a local OAuth listener on a random 127.0.0.1 port and proxies all subsequent JSON-RPC to https://mcp.quelvio.com/http.
The MCP server is an OAuth 2.1 + PKCE (S256) protected resource. Bearer tokens are opaque, KV-backed, and AES-GCM encrypted at rest. RFC 9728 + RFC 8414 discovery is wired:
GET /.well-known/oauth-protected-resource β resource metadataGET /.well-known/oauth-authorization-server β authorization server metadataGET /oauth/authorize β 302 to Clerk hosted sign-in (with PKCE state stashed in KV)GET /oauth/callback β Clerk session JWT β POST /v1/auth/sso-bridge mints a per-employee ephemeral key β 302 back to client redirect_uriPOST /oauth/token β auth_code or refresh_token grantPOST /oauth/revoke β invalidate a tokenModern MCP clients auto-bootstrap the flow when they hit a 401 with the WWW-Authenticate: Bearer ... resource_metadata=... challenge. Cursor and Claude Desktop do this transparently.
v0.8.8 foundation deletion: the legacy paste-an-API-key form path (POST /oauth/authorize with a qlv_ent_* key in the form body) is gone. Customers using paste-key MCP must complete the OAuth/Clerk round-trip on first use; the migration is automatic β the client just opens a browser tab the next time you invoke a tool.
query_knowledge β find an answer with citationslist_domains β discover what's indexed before queryingget_source_detail β verify a citationKnowledge Token consumption per tool call (v0.9 frozen constants):
query_knowledge with mode=fast : 1,500 kT (retrieval-only, no synthesis)query_knowledge with mode=standard : 12,500 kT (default; synthesis bundled)query_knowledge with mode=deep : 25,000 kT (wider retrieval + premium synthesis)list_domains : 0 kTget_source_detail : 0 kTThese costs are frozen at the v0.9 Contract Lock. The dashboard's billing page (/billing) shows the live per-tenant daily Knowledge Token pool and the projected next invoice.
The Worker is stateless β every OAuth artifact (auth codes, access tokens, refresh tokens) lives in the bound KV namespace. No Durable Objects.
POST /http with Content-Type: application/jsonGET / or GET /http returns server infoinitialize, tools/list, tools/call, pingtools/call query_knowledge carries Accept: text/event-stream AND mode is standard|deep (the two v0.9 tiers that synthesize), the server proxies the backend's SSE pipeline. fast never streams (no synthesis body to incrementally produce). The MCP response is still a single JSON body β token-by-token streaming to the MCP client lands when the spec adds native output deltas.truncated: true in the structured metadata block so agents can re-issue with a smaller max_sources.Publishes go through .github/workflows/publish.yml via npm Trusted Publishing (OIDC). No long-lived NPM_TOKEN lives in this repo or in GitHub Actions secrets.
To ship a new version:
The workflow verifies the tag matches package.json, type-checks, builds, and runs npm publish --provenance --access public. SLSA provenance is attached to every release.
One-time bootstrap on npmjs.com (operator step):
@quelvio/mcp-server β Settings β Trusted Publishers β AddQuelvioquelvio-mcp-serverpublish.ymlSee CHANGELOG.md.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-server-45)<a href="https://allmcps.com/mcp/mcp-server-45"><img src="https://allmcps.com/api/badge/mcp-server-45?style=directory" alt="Mcp Server on AllMCPs" /></a>