agent_memory
InactiveTool of com.gadgethumans.swarm/x402-middleware
Read or write persistent agent memory across sessions. Agents are stateless — use this to store and retrieve data between sessions. Data is stored in Cloudflare KV and persists indefinitely. Parameters: key — Unique memory key to read or write (e.g. "user_preferences"). value — For action="set": JSON string of the value to store. For action="get" or action="delete": ignored. action — One of: "get" (read existing value), "set" (write value), "delete" (remove the key). Default: "get".
Parameters schema
{
"type": "object",
"title": "agent_memoryArguments",
"required": [
"key"
],
"properties": {
"key": {
"type": "string",
"title": "Key"
},
"value": {
"type": "string",
"title": "Value",
"default": ""
},
"action": {
"type": "string",
"title": "Action",
"default": "get"
}
}
}Parent server
com.gadgethumans.swarm/x402-middleware
https://github.com/scotia1973-bot/gadgethumans-x402
2/7 registries