Connect Hippo to your
AI project with MCP
Add all of Hippo's capabilities — memory, reminders, finance, document analysis — to your own AI agent via MCP (Model Context Protocol). No code needed, just one connection.
{
"mcpServers": {
"hippo": {
"url": "https://mcp.hippo.ai/sse",
"transport": "sse"
}
}
}MCP tools, ready and powerful
Connect to Hippo via MCP, let your AI agent discover and use these tools automatically.
Natural Language Understanding
Understand user messages, extract intents and entities.
- Intent classification (reminder, note, finance…)
- Entity extraction (date, person, amount, location)
- Multi-language support (TR, EN, DE)
- Context-aware analysis
// AI ajanın Hippo'yu tool olarak çağırır:
tool: hippo_understand
input: {
"text": "Yarın saat 3te Ali ile kahve iç",
"lang": "tr"
}
// Hippo'dan dönen sonuç:
{
"intent": "reminder",
"entities": {
"date": "2025-01-16T15:00:00",
"person": "Ali",
"action": "kahve iç"
},
"confidence": 0.96
}Smart Memory
Store user-specific information, query with natural language.
- Isolated memory per user
- Natural language querying
- Automatic categorization
- Semantic search
// Bilgi kaydet
tool: hippo_memory_store
input: {
"text": "Annemin telefonu 0532 111 2233"
}
// Bilgi sorgula
tool: hippo_memory_query
input: {
"query": "Annemin telefon numarası ne?"
}
// → "0532 111 2233"Reminders & Scheduling
Create reminders from natural language, get notified when the time comes.
- One-time and recurring reminders
- Natural language time parsing
- Webhook callback support
- Timezone support
tool: hippo_create_reminder
input: {
"text": "Her pazartesi 09:00 standup hatırlat",
"timezone": "Europe/Istanbul"
}
// Sonuç:
{
"id": "rem_456",
"next_trigger": "2025-01-20T09:00+03:00",
"recurrence": "weekly"
}Finance Tracking
Log expenses, check budgets, get reports.
- Expense logging from natural language
- Automatic category detection
- Budget limits and alerts
- Periodic reporting
tool: hippo_log_expense
input: {
"text": "Markete 380 TL verdim"
}
// Sonuç:
{
"amount": 380,
"currency": "TRY",
"category": "market",
"budget_remaining": 2120
}Document Analysis
Send a photo or PDF, extract content and data.
- Text extraction with OCR
- Invoice and receipt recognition
- PDF summarization
- Table data extraction
tool: hippo_analyze_document
input: {
"file_url": "https://cdn.app.com/fis.jpg",
"type": "receipt"
}
// Sonuç:
{
"merchant": "A101",
"total": 245.90,
"items": [
{ "name": "Süt", "price": 32.90 },
{ "name": "Ekmek", "price": 12.00 }
]
}Social Media Extraction
Send a link, get content and metadata.
- Instagram, Twitter, YouTube support
- Automatic metadata extraction
- Content summarization
- Media URLs
tool: hippo_extract_url
input: {
"url": "https://instagram.com/p/abc123"
}
// Sonuç:
{
"platform": "instagram",
"author": "@kullanici",
"caption": "Harika bir gün!",
"media": ["https://..."],
"likes": 1240
}How does it work?
Connect Hippo to your AI agent in three steps.
Get your MCP key
Generate your MCP access URL and key from the developer panel.
Connect to your AI agent
Add Hippo to your MCP config file — Claude, Cursor, Lovable, or your own agent.
Use the tools
Your AI agent discovers and starts using Hippo tools automatically. No coding needed.
Compatible platforms
Quick start
Add the config for your platform, start using it right away.
{
"mcpServers": {
"hippo": {
"url": "https://mcp.gethippo.ai/sse",
"transport": "sse",
"headers": {
"Authorization": "Bearer hp_mcp_your_key"
}
}
}
}
// // Claude Desktop → Settings → MCP Servers
// Add this config, Hippo tools will appear automatically