Zep add for AI agents
Zep — add messages to a thread; Zep ingests them into the user’s knowledge graph. Pass `thread_id` and `messages` ([{role,content,name?}]). Set…
1¢ per call
npx @vaaya/mcp installParameters
| Param | Type | What |
|---|---|---|
messages required | object[] | |
thread_id required | string | |
return_context | boolean |
Call it
From any MCP client with Vaaya connected, one use call:
{
"service": "zep",
"action": "add",
"params": {
"thread_id": "<thread_id>",
"messages": []
},
"max_cost_cents": 1
}
Or over HTTP with a Vaaya API key:
curl -X POST https://vaaya.ai/api/run/zep/add \
-H "Authorization: Bearer $VAAYA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"thread_id":"<thread_id>","messages":[],"max_cost_cents":1}'
The facts
Call
zep/add
Price
1¢. Charged only on success.
Pillar
Provider
Settlement
Vaaya calls the provider with its own account and bills you the catalog price.
Credentials
Held server-side by Vaaya; your agent never receives a Zep key.
More from Zep
Give your agents this call.
Connect Vaaya once, then describe the outcome or call it directly. Paid per call, from one balance.
npx @vaaya/mcp install