Platform Tools
Platform tools are pre-built capabilities you can wire up to any agent — managed or custom. No code required. Just enable them and your agent can use them.Web
Search & FetchSearch the web and fetch content from URLs. Get real-time information for your agents.
Memory
User-Scoped PersistenceRemember information across conversations. Each user gets their own isolated memory.
Knowledge Base
RAG Over Your DocsUpload documents and let agents query them semantically. Project-scoped.
KV Storage
Lightweight StateKey-value storage for counters, preferences, flags, and simple state.
Platform Tools vs Custom Tools
| Platform Tools | Custom Tools | |
|---|---|---|
| Setup | Enable in UI, no code | Write Python or TypeScript |
| Hosting | Managed by Reminix | Deployed with your code |
| Use case | Common capabilities | Domain-specific logic |
| Examples | Web search, memory, knowledge | CRM lookup, payment processing |
Web Tool
Search the web and fetch content from URLs.Capabilities
- Search: Query search engines for real-time information
- Fetch: Retrieve and parse content from any URL
Use Cases
- Answer questions about current events
- Research topics in real-time
- Extract data from web pages
- Verify facts and information
Example
When enabled, your agent can answer questions like:- “What’s the latest news about AI?”
- “What does the documentation at this URL say?”
- “Find me the current stock price of AAPL”
Memory Tool
User-scoped persistence that remembers information across conversations.How It Works
Memory is scoped to individual users. When a user interacts with your agent, the agent can:- Store information about the user
- Retrieve previously stored information
- Update existing memories
- Clear memories when needed
Use Cases
- Remember user preferences
- Track conversation context across sessions
- Build personalized experiences
- Maintain user-specific state
Example
Scoping
Memory is user-scoped by default. Each user’s memory is isolated — Agent can’t access User A’s memories when talking to User B.Knowledge Base Tool
RAG (Retrieval-Augmented Generation) over your uploaded documents.How It Works
- Upload documents to your project (PDFs, text files, markdown)
- Enable the knowledge base tool for your agent
- Query — the agent automatically searches relevant documents when answering questions
Use Cases
- Answer questions about your product documentation
- Build support agents that know your help articles
- Create research assistants over large document sets
- Power FAQ bots with accurate, sourced answers
Scoping
Knowledge base is project-scoped. All agents in a project share the same knowledge base.Supported Formats
- Markdown (.md)
- Plain text (.txt)
- HTML
KV Storage Tool
Lightweight key-value storage for simple state.How It Works
Store and retrieve key-value pairs. Useful for:- Counters (e.g., “How many times has this user asked about pricing?”)
- Flags (e.g., “Has onboarding been completed?”)
- Simple preferences
- Session state
Example
When to Use KV vs Memory
| Use Case | Tool |
|---|---|
| Remember what user said in conversation | Memory |
| Track a counter or flag | KV Storage |
| Store user preferences (natural language) | Memory |
| Store user preferences (structured) | KV Storage |
Enabling Platform Tools
For Managed Agents
- Go to your agent in the Dashboard
- Navigate to the Tools tab
- Toggle on the platform tools you want to enable
- Save
For Custom Agents
Custom agents can call platform tools via the Reminix SDK when running on Reminix Cloud:Platform tools are only available when running on Reminix Cloud. When self-hosting, you’ll need to implement equivalent functionality yourself or use custom tools.
Limits by Plan
Platform tool usage varies by plan:| Tool | Free | Pro | Team |
|---|---|---|---|
| Web searches | 50/month | 1,000/month | 10,000/month |
| Memory operations | 100/month | 10,000/month | Unlimited |
| Knowledge base storage | 10 MB | 100 MB | 1 GB |
| KV operations | 1,000/month | 50,000/month | Unlimited |