Guide: Connectors
A connector is an MCP server muaz can launch and attach to an agent as a set of tools. The catalog on the UI Connectors page has two tiers:
- Core — the small set muaz CI-tests weekly against real servers. Verified and supported.
- Community — expected to work, but not verified by muaz (labelled as such and listed below the core group). Remote-registry entries can only present as core with a valid publisher signature; unsigned ones are shown as community.
The core connectors
Section titled “The core connectors”| Connector | Transport | Auth | What it gives an agent |
|---|---|---|---|
| GitHub | stdio (npx) | API key (PAT) | Issues, PRs, repo contents, search |
| Filesystem | stdio (npx) | none | Read/list/search a directory you allow-list |
| Fetch | stdio (uvx) | none | Fetch and read a URL as clean Markdown |
| Memory | stdio (npx) | none | A simple persistent key/value knowledge store |
| Linear | HTTP | OAuth | Issues, projects, and cycles in Linear |
The stdio connectors download their runtime (Node via npx, Python via uvx) on
first use — the first connect can take a moment.
Add one (UI)
Section titled “Add one (UI)”- Open Connectors, click a core entry to prefill the form.
- Fill any required fields — a GitHub PAT (
${GITHUB_TOKEN}), the directory for Filesystem, etc. Secrets are stored in your keychain, referenced by${VAR}. - Save, then Reconnect to confirm it comes up (the status chip turns green;
a missing
${VAR}deep-links to the field to fix). - Linear uses OAuth — click Authorize to run the browser sign-in.
Attach it to an agent
Section titled “Attach it to an agent”Connectors are opt-in per agent. On the Agents page (or in the agent YAML),
list the server under tool access and set a level per tool: off (hidden), ask
(prompt each call), or auto (run freely). Keep writes at ask.
Add any other MCP server
Section titled “Add any other MCP server”Not in the catalog? On the Connectors page, Paste config accepts the standard shape and imports every server at once:
{ "mcpServers": { "my-server": { "command": "npx -y @scope/my-mcp-server", "env": { "API_KEY": "${MY_API_KEY}" } } }}The command accepts an argv array or a single shell-quoted string — the same
quoting rule as the UI and mcp.json. env/headers values may be literals or
${VAR} references resolved at connect time.
Put connectors to work in the Connector automation guide.