Remote Memory MCP Server
Manages knowledge graph data synchronized with GitHub repositories, enabling remote storage and collaboration of memory entities, relationships, and observations.
README
remote-memory-mcp-server
Remote Memory MCP Server
GitHub 연동 원격 메모리 관리 MCP 서버입니다. 지식 그래프 데이터를 GitHub 저장소와 동기화하여 Memory의 원격 저장 및 협업을 지원합니다.
기능
- 엔티티, 관계, 관찰 데이터의 CRUD 연산
- GitHub 저장소와의 실시간 동기화
- 충돌 감지 및 해결
- 자동/수동 동기화 옵션
- 검색 및 필터링 기능
설치
cd C:\YOUR_PATH\remote-memory-mcp
npm install
npm run build
설정
필수 파라미터
GITHUB_TOKEN: GitHub Personal Access Token (repo 권한 필요)GITHUB_OWNER: GitHub 저장소 소유자GITHUB_REPO: GitHub 저장소 이름
선택 파라미터
GITHUB_BRANCH: 사용할 브랜치명 (기본값: main)
Claude Desktop 설정
claude_desktop_config.json 파일에 추가:
{
"mcpServers": {
"remote-memory": {
"command": "node",
"args": ["C://YOUR_PATH//remote-memory-mcp//dist//index.js"],
"env": {
"GITHUB_TOKEN": "YOUR_GITHUB_TOKEN_HERE",
"GITHUB_OWNER": "YOUR_GITHUB_USERNAME",
"GITHUB_REPO": "YOUR_GITHUB_REPO",
"GITHUB_BRANCH": "main",
"SYNC_INTERVAL": "300"
}
}
}
}
사용법
자세한 API 사용법과 예제는 SPEC.md를 참조하세요.
데이터 구조
메모리 데이터는 GitHub 저장소의 memory/graph.json 파일에 저장됩니다:
{
"entities": {
"Kim Kim": {
"name": "Kim Kim",
"entityType": "Person",
"observations": ["Software developer", "Lives in Seoul"],
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-01T00:00:00.000Z"
}
},
"relations": [
{
"from": "Kim Kim",
"to": "Company ABC",
"relationType": "works_at",
"createdAt": "2025-01-01T00:00:00.000Z"
}
],
"metadata": {
"version": "1.0.0",
"lastModified": "2025-01-01T00:00:00.000Z",
"lastSync": "2025-01-01T00:00:00.000Z"
}
}
아키텍처
주요 컴포넌트
- GitHubClient: GitHub API 상호작용 담당
- MemoryGraphManager: 메모리 그래프 관리
- SyncManager: 동기화 관리
- RemoteMemoryMCPServer: MCP 서버 메인 클래스
동기화 전략
- 충돌 해결: 최신 수정 시간 기준으로 우선순위 결정
- 자동 푸시: 로컬 변경 시 즉시 원격으로 푸시
- 자동 풀: 설정된 간격으로 원격 변경사항 확인
- 강제 동기화: 충돌 무시하고 양방향 동기화
주의사항
- GitHub Personal Access Token 필요 (repo 권한)
- GitHub API 제한: 인증된 사용자 시간당 5,000 요청
- 네트워크 연결 필수
- 시간당 5,000 요청 제한, 제한 초과 시 403 오류 발생
라이선스
MIT License - 자유롭게 사용, 수정, 배포 가능
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.