| title | Setup |
|---|---|
| icon | gear |
| description | Connect your AI assistant to the Omi MCP server |
The fastest way to get started — no installation required.
Open the Omi app and navigate to **Settings → Developer → MCP** to generate your API key.Your key will look like: `omi_mcp_...`
<Note>
This key is only for MCP clients. To call REST Developer API endpoints directly, create a separate
Developer API key from **Settings → Developer → Create Key**. Developer API keys look like
`omi_dev_...`.
</Note>
- **Server URL:** `https://api.omi.me/v1/mcp/sse`
- **Authorization:** `Bearer omi_mcp_...` (your generated key)
- **Transport:** Streamable HTTP (MCP 2025-03-26 spec)
Add to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"omi": {
"url": "https://api.omi.me/v1/mcp/sse",
"headers": {
"Authorization": "Bearer omi_mcp_YOUR_KEY_HERE"
}
}
}
}
```
**Config file location:**
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows PowerShell: `$env:APPDATA\Claude\claude_desktop_config.json`
- Windows cmd: `%APPDATA%\Claude\claude_desktop_config.json`
- **Name:** Omi
- **Transport:** SSE
- **URL:** `https://api.omi.me/v1/mcp/sse`
- **Headers:** `Authorization: Bearer omi_mcp_YOUR_KEY_HERE`
Enter the server URL and API key in Poke's MCP connection settings.
```bash
# Endpoint
POST https://api.omi.me/v1/mcp/sse
# Headers
Authorization: Bearer omi_mcp_YOUR_KEY_HERE
Content-Type: application/json
Accept: text/event-stream # for SSE responses
# Body (JSON-RPC 2.0)
{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {}}
```
If you prefer to run the MCP server locally:
Open the Omi app → **Settings → Developer → MCP** to generate your key. Install Docker. We recommend [OrbStack](https://orbstack.dev/) for macOS. Add to your `claude_desktop_config.json`:```json
{
"mcpServers": {
"omi": {
"command": "docker",
"args": ["run", "--rm", "-i", "-e", "OMI_API_KEY=omi_mcp_YOUR_KEY_HERE", "omiai/mcp-server"]
}
}
}
```
If you are self-hosting the Omi backend:
export OMI_API_BASE_URL="https://your-backend-url.com"