Skip to main content
Glama
Ritesh2351235

Omi Memories MCP Server

오미 메모리 MCP 서버

이는 도구 인터페이스를 통해 특정 사용자에게 Omi 메모리에 대한 액세스를 제공하는 MCP(Model Context Protocol) 서버입니다.

특징

  • OMI 앱에서 지정된 사용자 ID에 대한 모든 메모리를 가져오는 도구

Related MCP server: Omi MCP Server

설정

  1. 종속성 설치:

지엑스피1

  1. 사용자 ID를 구성하세요:

    • src/server.ts 엽니다.

    • Omira 앱의 계정 섹션에서 사용자 ID로 SPECIFIC_USER_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 데스크톱 통합

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

Resources

Looking for Admin?

Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.

Latest Blog Posts

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