Skip to content

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.

  1. Sign up at neuralrepo.com

    Head to neuralrepo.com and create your account. You can sign up with:

    • GitHub — recommended for developers
    • Google
    • Apple
    • Magic link — passwordless email login

    No credit card required. The free tier includes 30 ideas to get started.

  2. 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, or mobile
    • 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.

  3. Install the CLI

    Open your terminal and install the NeuralRepo CLI globally:

    Terminal window
    npm install -g @neuralconfig/nrepo

    Verify the installation:

    Terminal window
    nrepo --version
  4. Log in from the CLI

    Authenticate the CLI with your NeuralRepo account:

    Terminal window
    nrepo login

    This opens your browser for OAuth authentication. Once approved, the CLI stores your session locally in ~/.config/neuralrepo/config.json.

  5. 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 exploring

    You should see output confirming the idea was created:

    Idea created successfully
    ID: 42
    Title: Build a habit tracker app
    Status: exploring
    Tags: side-project
  6. 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.

  7. 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.

    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.