One-click connect
Add Gather to Claude, ChatGPT, Cursor, or VS Code. Log in, consent, done. No key to paste.
Most clients connect to Hunta in one click. You add a custom connector by URL, a browser window opens, you sign in with your Hunta account and approve the scopes, and the memory tools appear. There is no key to copy, and it works on mobile.
https://mcp.hunta.ai/mcpThe login is standard OAuth, so your tenant and scopes come from your Hunta account. Every token lands in your own isolated tenant, scoped to your role. If your client reads a config file instead, or you are wiring a headless agent, use the token path.
Claude desktop
- Settings, then Connectors.
- Add custom connector, and paste
https://mcp.hunta.ai/mcp. - A browser window opens: sign in, then Allow on the consent screen.
- The Gather tools appear in Claude. Ask it to run
whoamito confirm your tenant.
claude.ai (web)
The same custom-connector flow as Claude desktop: Settings, then Connectors, then Add custom connector, and paste the URL. Sign in and Allow in the window that opens.
Claude on iOS
Custom connectors are added on desktop or claude.ai, not inside the iOS app (the app's add button opens the connector directory). Once you have added Gather on either, it appears automatically under Settings, then Connectors on iOS and works there. Nothing to paste on the phone.
ChatGPT
- Settings, then Connectors. Enable Developer mode if your plan requires it.
- Add a custom connector, paste the URL, and choose OAuth for authentication.
- Sign in and Allow in the window that opens.
- Gather appears under your connectors. Run
whoamiin a chat to confirm.
Cursor
Add the server in Settings under Tools and Integrations, or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"gather": { "url": "https://mcp.hunta.ai/mcp" }
}
}Cursor prompts you to authenticate. Sign in and approve, and the tools are available to the agent.
VS Code (Copilot agent mode)
Run "MCP: Add Server" from the Command Palette, choose HTTP, and paste the URL, or add it to
.vscode/mcp.json:
{
"servers": {
"gather": { "type": "http", "url": "https://mcp.hunta.ai/mcp" }
}
}VS Code prompts you to sign in and approve the scopes.
What you are granting
Signing in creates or selects your isolated tenant. Scopes map to your role: owners get read, capture, curate
and write; members get read and capture; viewers get read. A connector never receives admin operations, and
the trusted path is propose and recall, not silent writes to canon. The verify_isolation tool returns proof
your token cannot reach another tenant, and signing out or removing a seat revokes access. The full scope table
is on the MCP page.