Skip to main content
Glama

Omi Memories MCP Server

Omi Memories MCP サーバー

これは、ツール インターフェイスを通じて特定のユーザーに Omi メモリへのアクセスを提供するモデル コンテキスト プロトコル (MCP) サーバーです。

特徴

  • OMIアプリから指定されたユーザーIDのすべての思い出を取得するツール

設定

  1. 依存関係をインストールします:
npm install
  1. ユーザー ID を設定します。
    • src/server.tsを開く
    • Omiraアプリのアカウントセクションから、 SPECIFIC_USER_ID定数をユーザーIDで更新します。
  2. TypeScript コードをビルドします。
npm run build
  1. サーバーを起動します。
npm start

利用可能なツール

フェッチメモリ

設定されたユーザー ID のすべてのメモリを取得します。

import { Client } from "@modelcontextprotocol/sdk/client/index.js"; import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js"; const transport = new StdioClientTransport({ command: "node", args: ["dist/server.js"] }); const client = new Client( { name: "example-client", version: "1.0.0" }, { capabilities: { tools: {} } } ); await client.connect(transport); // Fetch memories using the tool const result = await client.callTool({ name: "fetch-memories", arguments: {} }); console.log(result.content[0].text);

構成

サーバーは以下を期待します:

  1. Express API はhttp://localhost:3000で実行されます
  2. ユーザー ID を設定する必要があります: src/server.tsSPECIFIC_USER_ID定数を、Omira アプリのアカウント セクションから取得できるユーザー ID に更新します。

クロードデスクトップ統合

Claude Desktop と統合するには、Claude Desktop の構成 ( claude_desktop_config.json ) を更新して以下を追加します。

{ "mcpServers": { "omi-mcp": { "command": "node", "args": [ "/path/to/your/mcp-server/dist/server.js" ], "env": { "NODE_ENV": "development" } } } }

カーソルIDE統合

Cursor IDE と統合するには:

  1. オープンカーソルIDE設定
  2. 「AI & Copilot」設定に移動する
  3. 「モデル コンテキスト プロトコル」の下に、次の設定で新しい MCP サーバーを追加します。
{ "name": "Omi Memories", "command": "node", "args": [ "/path/to/your/mcp-server/dist/server.js" ], "cwd": "/path/to/your/mcp-server", "env": { "NODE_ENV": "development" } }

/path/to/your/mcp-server MCP サーバーのインストール ディレクトリへの実際のパスに置き換えます。

Install Server
A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

local-only server

The server can only run on the client's local machine because it depends on local resources.

ツール インターフェイスを介して特定のユーザー アカウントから Omi メモリにアクセスできるようにするモデル コンテキスト プロトコル サーバー。

  1. 特徴
    1. 設定
      1. 利用可能なツール
        1. フェッチメモリ
      2. 構成
        1. クロードデスクトップ統合
          1. カーソルIDE統合

            Related MCP Servers

            • A
              security
              A
              license
              A
              quality
              A Model Context Protocol server that facilitates integration with OpenCTI, allowing users to query and retrieve cyber threat intelligence data via a standardized interface.
              Last updated -
              16
              19
              TypeScript
              MIT License
            • -
              security
              F
              license
              -
              quality
              A Model Context Protocol server implementation that enables connection between OpenAI APIs and MCP clients for coding assistance with features like CLI interaction, web API integration, and tool-based architecture.
              Last updated -
              33
              Python
              • Linux
              • Apple
            • A
              security
              F
              license
              A
              quality
              A Model Context Protocol server that enables AI assistants to interact with the Omi API for retrieving and creating conversations and memories for users.
              Last updated -
              4
              2
              TypeScript
            • -
              security
              A
              license
              -
              quality
              A Model Context Protocol server that integrates AI assistants with Mem0.ai's persistent memory system, allowing models to store, retrieve, search, and manage different types of memories.
              Last updated -
              9
              Python
              MIT License
              • Apple

            View all related MCP servers

            MCP directory API

            We provide all the information about MCP servers via our MCP API.

            curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ritesh2351235/Omi-MCP'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server