Quick Start
Get from zero to capturing ideas in minutes. This guide walks you through signing up, creating your first idea from the web and CLI, and optionally connecting Claude AI.
-
Sign up at neuralrepo.com
Head to neuralrepo.com and create your account. You can sign up with:
- GitHub — recommended for developers
- Apple
- Magic link — passwordless email login
No credit card required. Every new account starts with a 30-day Pro trial. The free tier includes 50 ideas and full access to all capture channels.
-
Create your first idea from the web dashboard
Once signed in, click + Capture at the top of the left sidebar. The capture form asks for:
- Title — a short, descriptive name for your idea (required)
- Notes — optional details in Markdown
- Status —
captured(the default),exploring, orbuilding - Tags — type a name and press Enter, or click one of your existing tags
Hit Capture and your first idea is live. Duplicate detection runs a few seconds later in the background, so a possible-duplicate pair shows up in Duplicates and Review rather than blocking the save.
-
Install the CLI
Open your terminal and install the NeuralRepo CLI globally:
Terminal window npm install -g @neuralconfig/nrepoVerify the installation:
Terminal window nrepo --version -
Log in from the CLI
Authenticate the CLI with your NeuralRepo account:
Terminal window nrepo loginThis opens your browser for OAuth authentication. Once approved, the CLI stores your session locally in
~/.config/neuralrepo/config.json. -
Capture an idea from the CLI
Push your first idea directly from the terminal:
Terminal window nrepo push "Build a habit tracker app" --tag side-project --status exploringYou should see output confirming the idea was created:
✓ Idea captured#42 exploring ⬡ Build a habit tracker app [side-project]Processing: embeddings, dedup, and auto-tagging queuedThe number after
#is the idea number you use in every other command. -
Search your ideas
Find ideas by meaning:
Terminal window nrepo search "habit tracker"nrepo searchruns semantic search — vector similarity, so it matches meaning rather than words. Every plan gets it; the free plan gets 10 semantic searches a month and then falls back to keyword search automatically. -
Connect Claude AI via MCP (optional)
If you use Claude, you can let it read and write ideas directly through the Model Context Protocol.
In Claude.ai settings, add a new remote MCP server with this URL:
https://neuralrepo.com/mcp/On first use, Claude will prompt you to authorize NeuralRepo via OAuth.
Add the MCP server from your terminal:
Terminal window claude mcp add --transport http neuralrepo https://neuralrepo.com/mcp/The next time you start a Claude Code session, it will have access to your NeuralRepo ideas.
Once connected, you can say things like “Save this as an idea in NeuralRepo” or “Search my ideas for authentication patterns” and Claude handles the rest.
-
Try the AI agent (Pro)
On Pro, the NeuralRepo web app includes a built-in AI agent. Open the Agent tab in the sidebar to start a conversation, or open the Mind Map and click the agent icon in the bottom-right corner.
Select a model — the Workers AI models (GPT-OSS 120B, the default, and Qwen 30B) work without any API key. For the Anthropic models (Sonnet, Haiku, Opus), add your own key first in Settings ▸ AI Providers.
Try asking:
- “What am I working on?”
- “Find connections between my recent ideas”
- “Brainstorm 3 variations of my top idea”
See the AI Agent docs for the full list of capabilities.