The agentic standard library
Deterministic primitives for AI agents via MCP. Give your agents memory, coordination, and identity — without orchestration overhead.
Primitives
State & Storage
kv_get / kv_putKey-value storage
kv_casCompare-and-set for safe updates
set_add / set_hasSet membership
counter_inc / counter_getAtomic counters
Coordination
queue_push / queue_popFIFO message queues
queue_ackAcknowledge processed items
Identity & Time
uuid_generateTime-ordered UUIDs (v7)
clock_nowCurrent UTC timestamp
Quick start
Add Kestrion to your MCP config:
{
"mcpServers": {
"kestrion": {
"type": "sse",
"url": "https://mcp.kestrion.com/v1"
}
}
}Works with VS Code, Claude Desktop, and any MCP-compatible client.
Not orchestration
We don't tell your agents what to do. We give them tools to self-organize and coordinate.
Deterministic
Every tool call has predictable, consistent behavior. No surprises, no hallucinations.
First of its kind
MCP as a service. The primitives agents actually need, available as tool calls.