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"
}
}
}Connect to Hippo via MCP, let your AI agent discover and use these tools automatically.
Understand user messages, extract intents and entities.
// 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
}Store user-specific information, query with natural language.
// 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"Create reminders from natural language, get notified when the time comes.
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"
}Log expenses, check budgets, get reports.
tool: hippo_log_expense
input: {
"text": "Markete 380 TL verdim"
}
// Sonuç:
{
"amount": 380,
"currency": "TRY",
"category": "market",
"budget_remaining": 2120
}Send a photo or PDF, extract content and data.
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 }
]
}Send a link, get content and metadata.
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
}Connect Hippo to your AI agent in three steps.
Generate your MCP access URL and key from the developer panel.
Add Hippo to your MCP config file — Claude, Cursor, Lovable, or your own agent.
Your AI agent discovers and starts using Hippo tools automatically. No coding needed.
Compatible platforms
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