Memory Cache MCP Server

store_data

Store data in the cache with optional TTL

Input Schema

NameRequiredDescriptionDefault
keyYesUnique identifier for the cached data
ttlNoTime-to-live in seconds (optional)
valueYesData to cache

Input Schema (JSON Schema)

{ "properties": { "key": { "description": "Unique identifier for the cached data", "type": "string" }, "ttl": { "description": "Time-to-live in seconds (optional)", "type": "number" }, "value": { "description": "Data to cache", "type": "any" } }, "required": [ "key", "value" ], "type": "object" }