Skip to content
root edited this page Jun 2, 2026 · 8 revisions

FAQ

Is Recollectium cloud-hosted?

No. Recollectium Core is local-first. Data lives in a local SQLite database unless you deliberately place that database somewhere else.

Does Recollectium encrypt the database?

No. Use host-level protections if required, such as OS account permissions, encrypted home directories, encrypted volumes, full-disk encryption, and protected backups.

Does the API have authentication?

No. The v1 API and MCP services are unauthenticated and localhost-first. Do not expose them publicly.

Which embedding model does it use?

The default built-in local profile uses BAAI/bge-base-en-v1.5 through FastEmbed. It has 768 dimensions, profile builtin-fastembed-bge-base-en-v1-5-v1, max tokens 512, chunk tokens 384, and overlap 64.

The legacy supported alternative is jinaai/jina-embeddings-v2-small-en. It has 512 dimensions, profile builtin-fastembed-jina-v2-small-en-v1, max tokens 8192, chunk tokens 6144, and overlap 512. Switching embedding model or profile can require existing memories to be refreshed through the readiness and re-embedding job path.

Should agents search by type first?

Usually no. Search by scope first: user or workspace.

Recollectium uses embedding-based semantic search, so it returns memories that are closest in meaning to the query. In many cases, type is already implied by the words in the query. For example, searching user memory for "preferences about wording" will naturally pull preference-like memories even without --type preference.

If the result set is too broad, narrow by type. Type filters are useful when the agent knows it only wants a specific bucket, such as decision, configuration, or bug_finding.

What is the difference between serve and service start api?

recollectium serve runs the local HTTP API in the foreground. It is useful for development, debugging, and seeing logs directly in the terminal.

recollectium service start api starts a managed background API service, writes PID and discovery metadata, and is the recommended path for adapters and plugins.

Can I run Core on one machine and an agent on another?

Yes, but treat it as an advanced setup. The API and MCP services are unauthenticated in v1. Use private networking and external access controls, such as Tailscale, WireGuard, SSH tunnels, or firewall allowlists.

Is the OpenCode plugin available?

The OpenCode adapter is planned after v1.0.0. The Core service, CLI, API, MCP tools, workspace UID rules, and plugin contract are available as the foundation for adapter work.

Recollectium

Home

Quick Start
Installation
Concepts
Configuration
Features and Commands
CLI Reference
Service Management
WebUI
Logs
MCP Server
API Reference
Adapter and Plugin Integration
Verified Supported Plugins
Troubleshooting
FAQ

About the Author

Clone this wiki locally