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 サーバーのインストール ディレクトリへの実際のパスに置き換えます。

You must be authenticated.

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

            • -
              security
              A
              license
              -
              quality
              A Model Context Protocol server that provides file system operations, analysis, and manipulation capabilities through a standardized tool interface.
              Last updated -
              1
              TypeScript
              MIT License
            • -
              security
              F
              license
              -
              quality
              A Model Context Protocol server that enables Claude to persistently store, search, and manage text memories with tags in a local JSON file.
              Last updated -
              TypeScript
              • Apple
            • -
              security
              A
              license
              -
              quality
              A Model Context Protocol server that provides standardized interfaces for interacting with Ollama API, offering JSON responses, error handling, and intelligent guidance for LLM-based API calls.
              Last updated -
              Python
              MIT License
              • 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
              TypeScript

            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