Hydra DB MCP Server
Provides tools for storing, searching, and managing memories with knowledge-graph enriched context via Hydra DB's agentic memory.
README
Hydra DB — MCP Server
MCP (Model Context Protocol) server for Hydra DB, the state-of-the-art agentic memory. Provides tools for storing, recalling, and managing memories with knowledge-graph enriched context.
Available Tools
hydra_db_search
Search through Hydra DB memories. Returns relevant chunks with graph-enriched context including entity paths and knowledge graph relations.
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | Yes | The search query to find relevant memories |
max_results |
number | No | Maximum number of memory chunks to return (1-50, default: 10) |
mode |
string | No | Recall mode: fast for quick semantic search, thinking for deeper personalised recall with graph traversal (default: thinking) |
graph_context |
boolean | No | Whether to include knowledge graph relations in results (default: true) |
hydra_db_store
Save important information to Hydra DB memory. Hydra DB automatically extracts insights, preferences, and builds a knowledge graph from the stored content. Supports plain text and markdown.
| Parameter | Type | Required | Description |
|---|---|---|---|
text |
string | Yes | The information to store in memory |
title |
string | No | Title for the memory entry (default: MCP Memory) |
source_id |
string | No | Source identifier to group related memories together (e.g. session ID) |
infer |
boolean | No | Whether Hydra DB should extract insights and build knowledge graph (default: true) |
is_markdown |
boolean | No | Whether the text is in markdown format (default: false) |
hydra_db_ingest_conversation
Ingest user-assistant conversation turns into Hydra DB memory. Hydra DB extracts insights, preferences, and knowledge graph entities from the conversation.
| Parameter | Type | Required | Description |
|---|---|---|---|
turns |
array | Yes | Array of conversation turns, each with a user and assistant field |
source_id |
string | Yes | Source identifier to group all turns from the same session together |
user_name |
string | No | Name of the user for personalisation (default: User) |
hydra_db_list_memories
List all stored user memories in Hydra DB. Returns memory IDs and their content. No parameters required.
hydra_db_delete_memory
Delete a specific user memory from Hydra DB by its memory ID. This action is irreversible.
| Parameter | Type | Required | Description |
|---|---|---|---|
memory_id |
string | Yes | The ID of the memory to delete |
hydra_db_fetch_content
Fetch the full content of a specific source by its source ID.
| Parameter | Type | Required | Description |
|---|---|---|---|
source_id |
string | Yes | The source ID to fetch content for |
mode |
string | No | Fetch mode: content for text, url for presigned URL, both for both (default: content) |
hydra_db_list_sources
List all ingested sources in Hydra DB memory. Returns source IDs, titles, types, and metadata.
| Parameter | Type | Required | Description |
|---|---|---|---|
source_ids |
array | No | Array of specific source IDs to filter by. If omitted, lists all sources |
Configuration
Get Your Credentials
- Get your Hydra DB API Key from Hydra DB
- Get your Tenant ID from the Hydra DB dashboard
Environment Variables
| Variable | Description | Default |
|---|---|---|
HYDRA_DB_API_KEY |
Your Hydra DB API key | Required |
HYDRA_DB_TENANT_ID |
Your Hydra DB tenant identifier | Required |
HYDRA_DB_SUB_TENANT_ID |
Sub-tenant for data partitioning | hydra-db-mcp |
HYDRA_DB_LOG_LEVEL |
Log level: DEBUG, INFO, WARN, ERROR | ERROR |
Claude Desktop
{
"mcpServers": {
"hydradb": {
"command": "npx",
"args": ["-y", "@hydradb/mcp@latest"],
"env": {
"HYDRA_DB_API_KEY": "your-api-key",
"HYDRA_DB_TENANT_ID": "your-tenant-id"
}
}
}
}
Cursor & Windsurf
| Client | Config File |
|---|---|
| Cursor | ~/.cursor/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
{
"mcpServers": {
"hydradb": {
"command": "npx",
"args": ["-y", "@hydradb/mcp@latest"],
"env": {
"HYDRA_DB_API_KEY": "your-api-key",
"HYDRA_DB_TENANT_ID": "your-tenant-id"
}
}
}
}
VS Code
Add to .vscode/mcp.json:
{
"servers": {
"hydradb": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@hydradb/mcp@latest"],
"env": {
"HYDRA_DB_API_KEY": "your-api-key",
"HYDRA_DB_TENANT_ID": "your-tenant-id"
}
}
}
}
Custom Sub-Tenant
To partition data, set the HYDRA_DB_SUB_TENANT_ID environment variable:
{
"mcpServers": {
"hydradb": {
"command": "npx",
"args": ["-y", "@hydradb/mcp@latest"],
"env": {
"HYDRA_DB_API_KEY": "your-api-key",
"HYDRA_DB_TENANT_ID": "your-tenant-id",
"HYDRA_DB_SUB_TENANT_ID": "my-project"
}
}
}
}
How It Works
- hydra_db_search queries
POST /recall/recall_preferencesfor relevant memories and returns graph-enriched context (entity paths, chunk relations, extra context). Supportsfastandthinkingrecall modes. - hydra_db_store sends text to
POST /memories/add_memorywith configurableinfer,upsert,is_markdown,title, andsource_idoptions. Hydra DB extracts insights and builds a knowledge graph automatically. - hydra_db_ingest_conversation sends user-assistant pairs to
POST /memories/add_memoryas conversation turns, grouped bysource_id. - hydra_db_list_memories queries
POST /list/data(kind:memories) to browse stored memories. - hydra_db_list_sources queries
POST /list/data(kind:knowledge) to browse ingested sources, with optionalsource_idsfilter. - hydra_db_delete_memory calls
DELETE /memories/delete_memoryto remove a specific memory. - hydra_db_fetch_content calls
POST /fetch/contentto retrieve the original ingested content, with mode options (content,url, orboth).
Development
npm ci
npm run build
HYDRA_DB_API_KEY=your-key HYDRA_DB_TENANT_ID=your-tenant npm start
For development with auto-reload:
HYDRA_DB_API_KEY=your-key HYDRA_DB_TENANT_ID=your-tenant npm run dev
Testing
# unit tests (mocked HTTP)
npm test
# live integration test against Hydra DB
RUN_LIVE_TESTS=true HYDRA_DB_API_KEY=your-key HYDRA_DB_TENANT_ID=your-tenant npm run test:integration
Troubleshooting
- API Key Issues: Ensure
HYDRA_DB_API_KEYis set correctly - Connection Errors: Check your internet connection and API key validity
- Tool Not Found: Make sure the package is installed and the command path is correct
- Debug Logging: Set
HYDRA_DB_LOG_LEVEL=DEBUGfor verbose output
Contributing / Developer Setup
Get up and running quickly with the bootstrap script:
git clone https://github.com/usecortex/hydradb-mcp.git
cd hydradb-mcp
make bootstrap
This will install dependencies, build the project, and create a .env file from .env.example. Edit .env with your HydraDB credentials, then:
make dev # Start MCP server in dev mode (auto-reload)
make test # Run unit tests
make test-all # Run unit + integration tests
make check-types # Type-check without emitting
Run make help to see all available targets.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。