DocsQuickstart

Get Started with Byterover

This quickstart walks you through setting up your organization, configuring your project, selecting the LLM backend, and integrating Memories Memories into your Vibe coder. Start by storing your coding agent’s first memory and begin your journey today! 🚀

Set Up Your Organization

If you’re an owner, follow these steps. (Non-owners can skip this section).

  1. Sign up for a Byterover account.
  2. Create a new organization in your account.

Create a Project

Store all your Memories by creating a new project: • Go to the Projects section in the Byterover interface and create a new project.

Install and Set Up the Byterover MCP Server

NPM Installation

  1. System Requirements

    • Node.js version 20 or higher
    • npm (comes with Node.js)
  2. Install the Byterover MCP Server

    npm i byterover-mcp
  3. Configure the MCP Server Create or update your configuration file based on your operating system:

    For MacOS / Linux:

    {
      "mcpServers": {
        "Byterover Memory MCP": {
          "command": "npx",
          "args": [
            "-y",
            "byterover-mcp",
            "--byterover-public-api-key=YOUR_PUBLIC_KEY",
            "--user-id=YOUR-NAME",
            "--stdio"
          ]
        }
      }
    }

    For Windows:

    {
      "mcpServers": {
        "Byterover Memory MCP": {
          "command": "cmd",
          "args": [
            "/c",
            "npx",
            "-y",
            "byterover-mcp",
            "--byterover-public-api-key=YOUR_PUBLIC_KEY",
            "--user-id=YOUR-NAME",
            "--stdio"
          ]
        }
      }
    }

Configuration Parameters

  • YOUR_PUBLIC_KEY: Your Byterover public API key
  • YOUR-NAME: Your unique identifier in the system

Done! You’ve successfully set up the Byterover MCP Server.