Headless install
Install with a prompt.
Give this to your agent. It adds the MCP config (the standard protocol your agent uses to connect to tools), stores a fact, and recalls it back. Works with OpenClaw and any MCP or OpenAI-compatible harness. For a manual or multi-client setup, use the quickstart.
Add the Gather MCP server at https://mcp.hunta.ai/mcp with my agent key, then confirm you can remember and recall a test fact.- 1
Create an agent key
A scoped key: your agents can propose new memories and recall existing ones, but they never decide what enters shared memory. That decision stays with you. Your agents hold this one.
Open the console → - 2
Paste the prompt
Drop the block above into your agent with the key. It adds the MCP config, writes a test memory, and recalls it back to confirm.
- 3
Or add the config yourself
Prefer to set it up by hand? Point any MCP client at the endpoint.
{ "mcpServers": { "gather": { "url": "https://mcp.hunta.ai/mcp", "headers": { "Authorization": "Bearer <YOUR_KEY>" } } } } - 4
Verify the receipt
The reason to trust it: the server returns an isolation attestation, a check result signed with its Ed25519 key. You can verify the signature yourself instead of taking our word for it.
curl -X POST https://mcp.hunta.ai/v1/admin/verify-isolation -H "Authorization: Bearer $GATHER_TOKEN" -> ISOLATION VERIFIED - Ed25519 VALIDISOLATION VERIFIED