Create a dataset
data://host/dataset/command/create
{
"name": "domains",
"dataset_schema": "{\"type\":\"object\",\"required\":[\"domain\"],\"properties\":{\"domain\":{\"type\":\"string\"}}}"
}
Data connector
SQLite Context Store is an external urirun connector package that gives the host a small durable memory for records, artifacts, checks and logs. It generates bindings from decorators, compiles into a normal urirun registry, and projects to MCP tools / A2A skills for host workflows that need to remember what was checked, imported, generated or changed.
python>=3.10data://host/dataset/command/create
{
"name": "domains",
"dataset_schema": "{\"type\":\"object\",\"required\":[\"domain\"],\"properties\":{\"domain\":{\"type\":\"string\"}}}"
}
data://host/record/command/upsert
{
"dataset": "domains",
"key": "ifuri.com",
"data": "{\"domain\":\"ifuri.com\",\"url\":\"https://ifuri.com\"}"
}
data://host/records/query/search
{
"q": "domain",
"limit": 10
}
log://host/logs/query/recent
{
"limit": 20
}
curl -fsSL 'https://connect.ifuri.com/install?connectors=sqlite-context' | bash
{
"id": "sqlite-context",
"name": "SQLite Context Store",
"status": "available",
"uriSchemes": [
"data",
"artifact",
"check",
"log"
],
"routes": [
"data://host/datasets/query/list",
"data://host/dataset/command/create",
"data://host/record/command/upsert",
"data://host/records/query/search",
"data://host/sql/query/read-only",
"artifact://host/artifact/command/register",
"artifact://host/artifacts/query/list",
"check://host/check/command/add",
"check://host/checks/query/recent",
"log://host/daily/command/write",
"log://host/logs/query/recent"
],
"install": {
"mode": "urirun-extra",
"pipSpec": "urirun-connector-sqlite-context @ git+https://github.com/if-uri/urirun-connector-sqlite-context.git@v0.1.1"
},
"hubUrl": "https://connect.ifuri.com/connectors/sqlite-context"
}