Cloud-only memory SDK and MCP adapter for autonomous agents
Project description
Bilinc
Cloud-only memory SDK and MCP adapter for autonomous agents.
Bilinc 2.0 on PyPI is intentionally thin: it does not ship the local StatePlane, storage backends, evaluation harness, or server internals. The public package connects agents to hosted Bilinc Cloud at https://bilinc.space.
pip install bilinc
export BILINC_API_KEY=bil_live_...
Start a 7-day trial at https://bilinc.space/signup, create an API key, then use the SDK, CLI, or MCP adapter from your agent runtime.
Python SDK
import os
from bilinc import CloudClient
client = CloudClient(api_key=os.environ["BILINC_API_KEY"])
client.commit(
"agent.intent",
{"goal": "ship reliable memory"},
memory_type="semantic",
importance=0.9,
)
results = client.recall("reliable memory", profile="balanced", limit=5)
status = client.status()
CLI
bilinc signup
bilinc commit --key USER_PREF --value '{"theme":"dark"}'
bilinc recall --query "user preference" --profile balanced --limit 5
bilinc status
All commands use BILINC_API_KEY unless --api-key is passed explicitly.
MCP adapter
{
"mcpServers": {
"bilinc": {
"command": "python",
"args": ["-m", "bilinc.cloud_mcp"],
"env": { "BILINC_API_KEY": "bil_live_..." }
}
}
}
What is included in 2.0
bilinc.CloudClientbilinc.BilincaliasbilincCLI for hosted commit, recall, status, and signupbilinc.cloud_mcpadapter entrypoint
What is not included
- Local
StatePlane - SQLite/PostgreSQL storage backends
- Z3/networkx local runtime dependencies
- Local MCP server internals
- Evaluation, observability, and integration packages
Those internals remain separate from the public PyPI install path. Use Bilinc Cloud for hosted storage, retention, audit, API keys, and billing-backed entitlements.
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.0.0.tar.gz.
File metadata
- Download URL: bilinc-2.0.0.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3038f50d2929b2bf87bf3eb76dfdc76f964542674c16300a578aaedb58452c07
|
|
| MD5 |
151c5b97453922aee2e9d233aceff7ec
|
|
| BLAKE2b-256 |
5059b0736f7b83ccbbf99548619c73177975f617a3fd8a0bc28be93c82e6487b
|
File details
Details for the file bilinc-2.0.0-py3-none-any.whl.
File metadata
- Download URL: bilinc-2.0.0-py3-none-any.whl
- Upload date:
- Size: 8.1 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 |
f99ce3056a6e45c3c618b857e63ca42c06ba0a3e859ee0092986fd51b9c26eef
|
|
| MD5 |
276f613ef9b60ad6cb0ce6a1ad24f102
|
|
| BLAKE2b-256 |
52431da3dc11ab9e66b20a4beca8715156726c0c05624b20e2847aee85d768f5
|