Skip to content

Latest commit

 

History

History
76 lines (65 loc) · 2.14 KB

File metadata and controls

76 lines (65 loc) · 2.14 KB
title Examples
icon code
description Example prompts and integrations with the Omi MCP server

Example Prompts

Once connected, try these prompts with your AI assistant:

``` "What do you know about my work projects?" "Find conversations where I discussed travel plans" "Search my memories for anything about fitness goals" "What did I talk about last Tuesday?" ``` ``` "Remember that I prefer morning meetings before 10am" "Update my memory about my favorite restaurant — it's now Sushi Nakazawa" "Delete the memory about my old phone number" "What are all my memories in the 'work' category?" ``` ``` "Summarize my conversations from this week" "Find the conversation where I brainstormed app ideas" "What topics come up most in my recent conversations?" "Show me the full transcript of my last meeting" ```

Integration Examples

Build chains with Omi data Create AI agents using Omi Programmatic LLM pipelines

Python SDK Example

from langchain_mcp_adapters.client import MultiServerMCPClient

async with MultiServerMCPClient({
    "omi": {
        "url": "https://api.omi.me/v1/mcp/sse",
        "transport": "streamable_http",
        "headers": {"Authorization": "Bearer omi_mcp_YOUR_KEY"},
    }
}) as client:
    tools = client.get_tools()

    # Search memories
    result = await client.call_tool("omi", "search_memories", {
        "query": "morning routine",
        "limit": 5,
    })
    print(result)