What is MCP?
MCP is a standard protocol for connecting AI assistants to external capabilities:- Servers provide tools (functions the AI can call)
- Qualia connects to servers and exposes their tools
- You control which servers are enabled and what permissions they have
Adding an MCP server
- Go to Settings > MCP Integrations
- Click Add Server
- Configure the server:
Command-based (stdio)
For servers that run as local processes:- Name: Identifier for this server
- Command: The executable to run (e.g.,
npx,python) - Arguments: Command-line arguments
- Environment variables: Variables to set for the process
URL-based (HTTP/SSE)
For servers accessible via HTTP:- Name: Identifier for this server
- URL: The server endpoint
- Headers: Authentication headers (optional)
http or https. A server you run yourself is fine, whether that is http://localhost:3000/mcp or a machine on your network. Addresses that no MCP server of yours could occupy are rejected, including cloud instance metadata addresses such as 169.254.169.254, because the headers you configure are sent to whatever the URL points at.
Headers may reference a credential you have connected in Settings, written as ${quadrillion:credential:LINEAR_API_KEY}. These references are only substituted when the backend serves a single user on localhost, which is the case for the desktop app. On a shared backend the server is skipped instead, because the URL decides where the secret is sent and whoever can edit the configuration is not necessarily the person the credential belongs to. Put the value directly in the header there, or supply it through the server’s own environment.
Pasting configuration
You can paste JSON configuration directly:mcp.json, making it easy to share configurations.
Managed connectors
Some connectors are managed by a native Qualia integration rather than configured by hand. They appear in the connector catalog, but signing in happens once in settings and the credentials are handled for you — there is no token to paste and nothing written tomcp.json.
Databricks is worth calling out. In Qualia Cloud it is organization-scoped, so an admin configures the workspace once and each member then signs in individually; on desktop you configure and sign in yourself. Asking Genie questions in chat is not available yet; when it lands, answers will arrive labeled Powered by Genie with a link to the Space that produced them.
Server status
Each server shows its connection status:
Use the Enable/Disable toggle to control whether a server should connect.
Managing tools
Click a server to expand its tool list. Each tool shows:- Name: What the tool is called
- Description: What the tool does
- Permission: How confirmations are handled
Tool permissions
Control how each tool runs:
New tools default to Require permission. When Qualia wants to use a tool with this setting, you’ll see a confirmation dialog showing what it wants to do.
You can set Always allow from the confirmation dialog to approve future uses.
Viewing schemas
Click Show schema on any tool to see its input schema — the parameters it accepts and their types. This helps you understand what the tool can do.Tool usage in chat
When Qualia uses an MCP tool:- You see the tool name and arguments
- For “Require permission” tools, a confirmation dialog appears
- After approval (or for “Always” tools), the tool executes
- Results appear in the conversation
Refreshing tools
If a server’s tools change, click Refresh tools to rediscover them. This is useful during server development or after updates.Configuration file
MCP configuration is stored at~/.quadrillion/mcp.json:
Troubleshooting
Server won’t connect
- Check the command/URL is correct
- Verify required dependencies are installed
- Look at the error message for specifics
Tools not appearing
- Click Refresh tools
- Check server status is “Connected”
- Verify the server actually provides tools
Permission issues
- Tools default to “Require permission”
- Change to “Always” for trusted, frequently-used tools
- Use “Never” for tools you want to block

