Get started

Quick Start

Copy page

Get started with Inkeep Agents in <1min

Launch your first agent

Prerequisites

Before getting started, ensure you have the following installed on your system:

You can verify by running:

node --version
pnpm --version
docker --version

Step 1: Create a new agents project

Run the quickstart script on a target folder:

npx @inkeep/create-agents my-agents

Navigate to the folder

cd my-agents

Open the folder using your coding editor. To open with Cursor, you can run cursor .

Step 2: Run the setup script

Ensure Docker Desktop (or Docker daemon) is running before running the setup script.

pnpm setup-dev

Or if you are using a cloud database, you can skip the docker database startup by running:

pnpm setup-dev --skip-docker

Make sure your DATABASE_URL environment variable is configured for your cloud database.

Step 3: Launch the dev environment

pnpm dev

The Visual Builder will auto-open at http://localhost:3000.

Step 4: Chat with your agent

Navigate to the Activities Planner agent at http://localhost:3000, click Try it, and ask about fun activities at a location of your choice:

Chat with your agent

Step 5: Install Inkeep MCP (optional)

If you didn't already opt-in to install the Inkeep MCP server during setup, you can add the Inkeep MCP server to your preferred IDE. This enables AI coding assistants to "vibe code" with your Inkeep agents.

Add to CursorInstall in VS Code

To add to Claude Code, run this in your terminal:

claude mcp add --transport http inkeep-agents https://agents.inkeep.com/mcp --scope project

Or manually add https://agents.inkeep.com/mcp as an MCP Server to any MCP client.

Next steps

Next, we recommend learning about inkeep push and inkeep pull so you can go from SDK -> Visual Builder and Visual Builder -> SDK. See the Push / Pull guide for a quick example.