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. The free tier includes 30 ideas to get started.
-
Create your first idea from the web dashboard
Once signed in, click the New Idea button in the top right. Fill in:
- Title — a short, descriptive name for your idea
- Body — optional details in Markdown
- Tags — categorize with labels like
side-project,ai, ormobile - Status — defaults to
captured
Hit Save and your first idea is live. If NeuralRepo detects a similar existing idea, you will see a duplicate warning before saving.
-
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 created successfullyID: 42Title: Build a habit tracker appStatus: exploringTags: side-project -
Search your ideas
Find ideas using semantic search:
Terminal window nrepo search "habit tracker"This returns matching ideas ranked by relevance. On the Pro plan, search uses vector similarity — so it finds ideas by meaning, not just keywords.
-
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.