How to Use Proceriq
Your AI-powered second brain. Everything you need to know.
Chat
The Chat page is your main interface. Type anything and Proceriq will respond using your stored memories as context.
- Auto Router model: Automatically picks the best AI model for each query.
- Auto space: AI classifies each message as Work or Personal automatically.
- Memory: Messages over 30 chars are auto-saved for future sessions.
Memories
Browse, search, and delete stored memories. Search is semantic — it finds meaning, not just keywords.
Telegram Bot
Capture memories on the go without opening the app.
- Go to Settings and click Connect Telegram
- Click Generate Link and tap the deep link in Telegram
- Any message you send the bot is saved to your memory
💡The bot responds using your memory as context — the full Proceriq experience in Telegram.
Documents
Upload PDFs or text files and Proceriq embeds them into your memory. Chat will reference them automatically when relevant.
API
Read and write memories from your own apps, automations, or scripts.
# Search memories curl https://proceriq.com/api/v1/memories?q=your+query \ -H 'Authorization: Bearer YOUR_API_KEY' # Save a memory curl -X POST https://proceriq.com/api/v1/memories \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json' \ -d '{"content": "My note", "space": "auto"}'Generate your API key in Settings.
MCP — Claude Desktop / Cursor
Add Proceriq as an MCP server so Claude Desktop or Cursor can query your memory automatically.
// ~/.claude/claude_desktop_config.json { "mcpServers": { "proceriq": { "url": "https://proceriq.com/api/mcp", "headers": { "Authorization": "Bearer YOUR_API_KEY" } } } }Available tools: search_memory, save_memory, list_memories
💡Get your API key from Settings first.
Settings
- Default Model: Set preferred AI model
- Telegram: Link or unlink your account
- API Keys: Generate keys for REST API and MCP. Keys are shown once — copy immediately.