Connect your coding agent to NovaMind
NovaMind speaks MCP (Model Context Protocol) at a single endpoint. Your agent gets three tools:
novamind_ask (grounded, citation-backed answers), novamind_search (fast supporting passages),
and novamind_domains (the knowledge domains you can filter by).
1 ยท Get your API key
- Sign in at novamind.design โ open the memory drawer (๐ง , top right) โ agent api keys.
- Mint a key with a label naming the device/agent ("Claude Code โ laptop"). It's shown once โ copy it now.
- Store it as an environment variable, e.g.
NOVAMIND_API_KEY.
2 ยท Add NovaMind to your agent
Claude Code โ one command:
claude mcp add --transport http novamind https://novamind.design/mcp \ --header "Authorization: Bearer $NOVAMIND_API_KEY"
Claude Desktop / claude.ai โ no key needed. Settings โ Connectors โ
Add custom connector โ URL https://novamind.design/mcp โ Add. Claude opens a
NovaMind page in your browser: sign in with your email + password, click Approve, done.
Disconnect any time from NovaMind's memory drawer (connected apps).
Cursor โ ~/.cursor/mcp.json (or project .cursor/mcp.json):
{"mcpServers": {"novamind": {
"url": "https://novamind.design/mcp",
"headers": {"Authorization": "Bearer ${env:NOVAMIND_API_KEY}"}}}}
Windsurf โ ~/.codeium/windsurf/mcp_config.json (note serverUrl):
{"mcpServers": {"novamind": {
"serverUrl": "https://novamind.design/mcp",
"headers": {"Authorization": "Bearer ${env:NOVAMIND_API_KEY}"}}}}
VS Code (Copilot agent mode) โ .vscode/mcp.json (prompts once, stores securely):
{"inputs": [{"id": "novamind-key", "type": "promptString",
"description": "NovaMind API key", "password": true}],
"servers": {"novamind": {"type": "http",
"url": "https://novamind.design/mcp",
"headers": {"Authorization": "Bearer ${input:novamind-key}"}}}}
Anything else (stdio-only clients, no header support) โ the mcp-remote bridge:
{"mcpServers": {"novamind": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://novamind.design/mcp",
"--header", "Authorization:Bearer ${AUTH_TOKEN}"],
"env": {"AUTH_TOKEN": "nvm_ak_โฆ"}}}}
3 ยท Notes
- Agent usage shares your account's daily budget and rate limits โ a runaway loop gets a clean
429withRetry-After. novamind_askmodes:fast(~2s) ยทnormalยทdeep(widest retrieval, slower).- Revoke any key instantly from the drawer; mint up to 5 (one per device/agent keeps revocation surgical).
NovaMind ยท Atelier84 ยท Terms