Cloud-only memory SDK and MCP adapter for autonomous agents
Project description
Bilinc
Bilinc is a ReARC Labs product for hosted, verifiable AI agent memory.
Bilinc 2.1.2 on PyPI is the public cloud-only package: a thin Python SDK, CLI, and MCP adapter for Bilinc Cloud. It does not ship the local StatePlane, storage backends, eval, observability, integrations, or server runtime internals.
Start in 60 Seconds
pip install -U bilinc
bilinc start
bilinc start shows the shortest path from install to first hosted memory:
- Start the 7-day Bilinc Cloud trial at https://bilinc.space/signup.
- Confirm email.
- Create one hosted API key in the Cloud dashboard.
- Connect the CLI:
bilinc login --api-key bil_live_...
bilinc quicktest
bilinc quicktest performs one hosted commit, one hosted recall, and one Cloud status check.
Python SDK
from bilinc import CloudClient
client = CloudClient() # reads BILINC_API_KEY or a key saved by `bilinc login`
client.commit("agent.goal", {"ship": "reliable memory"}, memory_type="semantic")
results = client.recall("agent goal", limit=5)
status = client.status()
For server, CI, and hosted agent runtimes, store the key as BILINC_API_KEY.
CLI
bilinc status
bilinc commit --key agent.goal --value '{"ship":"reliable memory"}'
bilinc recall --query "agent goal"
bilinc doctor
Useful first-run commands:
bilinc start
bilinc login --api-key bil_live_...
bilinc quicktest
bilinc mcp install
MCP Adapter
{
"mcpServers": {
"bilinc": {
"command": "python",
"args": ["-m", "bilinc.cloud_mcp"],
"env": { "BILINC_API_KEY": "bil_live_..." }
}
}
}
The adapter exposes hosted commit, recall, and status operations. It does not bundle local runtime internals.
Hosted Endpoints
- Health:
GET https://bilinc.space/api/cloud/health - Commit:
POST https://bilinc.space/api/cloud/memory/commit - Recall:
POST https://bilinc.space/api/cloud/memory/recall
Authenticated memory operations require an active Bilinc Cloud entitlement.
Links
- Website: https://bilinc.space
- Signup: https://bilinc.space/signup
- Install guide: https://bilinc.space/install
- Quickstart: https://bilinc.space/docs/quickstart
- Cloud quickstart: https://bilinc.space/docs/cloud-quickstart
- Migration guide: https://bilinc.space/docs/migration-v2
- PyPI: https://pypi.org/project/bilinc/
License
BUSL-1.1. See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bilinc-2.1.2.tar.gz.
File metadata
- Download URL: bilinc-2.1.2.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8e44c77216e46499dc6cb25554d65bdb7c74fdab8deee5522dd742ffe19b804
|
|
| MD5 |
7e04954cd282df57e23b497a8872d537
|
|
| BLAKE2b-256 |
7c86fa603cf9a00176ae8880dfe44196df1da0937177fab0295e4f1f01f71827
|
File details
Details for the file bilinc-2.1.2-py3-none-any.whl.
File metadata
- Download URL: bilinc-2.1.2-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74486dd01f668d98aa13af45c4bae82c5e04d4bd7671986300b81170ffe44adf
|
|
| MD5 |
a9d0da8eaf5e334c881812516771b2cc
|
|
| BLAKE2b-256 |
5ea0b9228888770ad99dc8f1e6ddef881bb2061ab08ec29c11a7d0008d23aef1
|