Add Cacheroo caching to your Claude Code workflow via CLI. 30 seconds.
Install the CLI globally and provision your namespace in one shot.
npm install -g cacheroo-cli cacheroo signup myproject --local
Run the setup wizard. It detects Claude Code and outputs config snippets for CLAUDE.md and .mcp.json. Paste them into your project.
cacheroo init
CLAUDE.md snippet
# Cacheroo Integration Use the cacheroo CLI for all cache operations. ## Store a value cacheroo set <key> <value> --ttl 3600 ## Retrieve a value cacheroo get <key> ## List keys cacheroo keys 'pattern:*' ## Check namespace usage cacheroo status
.mcp.json snippet
{
"mcpServers": {
"cacheroo": {
"command": "cacheroo",
"args": ["mcp-serve"]
}
}
}
Use the CLI to store, retrieve, and inspect cached data.
cacheroo set user:123 '{"name":"joe"}' --ttl 3600
cacheroo get user:123
cacheroo keys 'user:*'
cacheroo status
Complete the one-time card verification. This opens your browser to Stripe.
cacheroo verify
See all available commands and check your installed version.
cacheroo help cacheroo --version