---
title: Understanding RocketRide
sidebar_label: Understanding RocketRide
---

# Understanding RocketRide

RocketRide has a few moving parts. Once you know how they fit together, the rest
of the docs map cleanly onto them.

## The pipeline

A **pipeline** is a graph of nodes defined in a `.pipe` file (JSON). Data flows between nodes
along typed **data lanes**: a node declares which input lanes it consumes and which output
lanes it produces, and the engine routes data accordingly. See
[Pipelines](/concepts/pipelines) and the [Execution model](/concepts/execution-model).

## Nodes

**[Nodes](/nodes)** are the building blocks: LLM providers, vector stores, embedding models,
preprocessors, OCR/NER, web tools, agents, and sources like Chat. Each node ships a schema
(its config, inputs, and outputs) and runs inside the engine. Connectors are the nodes that
read from and write to external systems. See
[Nodes](/concepts/nodes) and
[Agents & tools](/concepts/agents-tools-skills).

## The runtime engine

Pipelines execute on a multithreaded **C++ engine** (the runtime). It loads the `.pipe`
definition, instantiates the nodes, and streams data through the graph. The same engine runs
locally, on-premises, and on RocketRide Cloud. See [Runtime & engine](/concepts/runtime-engine).

## Talking to the engine

You start and feed pipelines through one of two protocols:

- **[WebSocket](/connect/websocket)**: the native engine protocol (port 5565). The
  [TypeScript](/clients/typescript) and [Python](/clients/python) SDKs speak it for you:
  `use()` to start a pipeline, `send()`/`pipe()` to stream data, `chat()` for conversational
  flows, `terminate()` to stop.
- **[MCP](/connect/mcp/stdio)**: expose a pipeline as a tool for AI assistants like Claude and
  Cursor.

## How you build

- **Visually**: the VS Code [extension](/clients/vscode) opens `.pipe` files on a
  canvas; wire nodes by connecting lanes and press Run.
- **In code**: author or run the same pipeline from your application with the SDKs.
- **As an app**: wrap a pipeline in a UI that runs inside the RocketRide
  shell and deploy it to your team. See [Apps](/concepts/apps).

## Putting it together

A typical flow: author a `.pipe` visually → run it locally to iterate → integrate it into
your app via an SDK → deploy the engine on-prem or to [Cloud](/operate/cloud). The pipeline JSON never
changes across those steps.

See the [Quickstart](/quickstart) walkthroughs to do this end to end.
