Ingest into Hydra DB
hydradb_ingestStore important facts, preferences, and decisions in persistent memory. Supports plain text, markdown, and conversation turns. Automatically extracts insights and builds a knowledge graph.
Instructions
Save important information to Hydra DB State-of-the-art agentic memory. Use this to persist facts, preferences, decisions, notes, or any text the user wants remembered across sessions. Hydra DB automatically extracts insights, preferences, and builds a knowledge graph from the stored content. Supports plain text and markdown. To ingest a conversation instead of a single note, provide turns (user/assistant pairs) rather than text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | The information to store in memory | |
| infer | No | Whether Hydra DB should extract insights and build knowledge graph from this text (default: true) | |
| title | No | Optional title for the memory entry (default: 'MCP Memory') | |
| turns | No | Optional conversation turns to ingest instead of `text`; each has a 'user' and 'assistant' field | |
| source_id | No | Optional source identifier to group related memories together. You can use this as your session ID or any other unique identifier for a conversation | |
| user_name | No | Optional name of the user for personalisation (default: 'User') | |
| is_markdown | No | Whether the text is in markdown format (default: false) |