kioku 記憶 Dashboard →
v1 · live on Cloudflare

Persistent memory
for AI agents.

Semantic search, strength decay, auto-consolidation.
One line to connect any MCP-compatible agent.

shell
claude mcp add kioku \
    https://mcp.takizen.xyz/mcp \
    --transport http \
    --header "Authorization: Bearer YOUR_API_KEY"

How it works

01

Connect

Add kioku to your MCP config once. Works with Claude Code, Cursor, any MCP-compatible client.

02

Remember

Agent calls remember() automatically. Semantic dedup prevents noise. Strength starts at 1.0.

03

Recall

Semantic search returns the most relevant memories. Each recall reinforces strength.

Tools

remember(content, tags?)

Store a memory. Semantic dedup: if similarity > 0.92, updates existing instead of creating duplicate.

recall(query, k?)

Semantic search. Returns k most relevant memories. Reinforces strength of results.

forget(id)

Archive a memory to cold storage. Not permanent — recoverable for 90 days.

list(tags?, min_strength?)

List memories filtered by tags or minimum strength. Default: all active memories.

Get API key

Free tier included.

200 memories, 50 recalls/day. No credit card. Upgrade to Pro for 10k memories and weekly consolidation.

200 memories
50 recalls / day
Semantic deduplication
Daily strength decay
Weekly consolidation (Pro)

Create namespace via CLI

curl -X POST https://mcp.takizen.xyz/api/signup \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'

Returns your API key. Store it securely — it cannot be recovered, only rotated.