Installation and local setup
Install a release
Section titled “Install a release”tapes is the server — it runs the services and owns the database:
curl -fsSL https://download.tapes.dev/install | bashtapes versiontapesctl is the client. It
captures sessions and reads them back, and is what you use day to day:
curl -sSfL https://download.tapes.dev/tapesctl/install | bashtapesctl versionEach version call is an install smoke test: it proves the binary is on your
PATH and runs.
Bootstrap local dependencies
Section titled “Bootstrap local dependencies”Tapes uses PostgreSQL as its storage backend and pgvector for semantic search. The bundled bootstrap requires Docker and provisions:
- PostgreSQL with pgvector and pg_duckdb;
- Ollama for local embeddings. It reuses a running native server when available, or starts an Ollama container when Ollama is not installed. If native Ollama is installed but stopped, the command tells you to start it and pull the model.
tapes local uptapes local statusThe default PostgreSQL port is 5432, Ollama port is 11434, and embedding model is embeddinggemma. To force Ollama into Docker:
tapes local up --docker-ollamaThe PostgreSQL data directory lives under the active .tapes/ directory. Stopping containers preserves it:
tapes local downDelete both containers and captured PostgreSQL data only when a reset is intended:
tapes local down --wipe
--wipepermanently removes locally captured sessions.
Start Tapes
Section titled “Start Tapes”tapes serveDefaults are proxy :8080, read API :8081, private ingest API :8082, Ollama upstream http://localhost:11434, and background span embedding enabled. Verify the read API and configuration:
curl http://localhost:8081/pingtapes statusPoint the client at the read API once, so the read commands need no flag:
tapesctl config set tapes-url http://localhost:8081Seed representative capture data through the normal ingest and derive path:
tapesctl seedtapesctl sessions listCapture commands address the ingest port instead, and take it explicitly:
tapesctl start claude --tapes-url http://localhost:8082. See
Agent integrations.
OpenAI embeddings
Section titled “OpenAI embeddings”Local PostgreSQL is still required, but Ollama need not be used for embeddings:
tapes auth openaitapes config set embedding.provider openaitapes serveOPENAI_API_KEY may be used instead of tapes auth openai. The configured model and dimensions must match the provider’s output.
For source builds and contributor dependencies, see Local development.