Skip to main content
Glama
YeomYuJun

Remote Memory MCP Server

by YeomYuJun

force_sync

Trigger bidirectional synchronization to align local and remote knowledge graph data, ensuring consistency across distributed systems.

Instructions

강제로 양방향 동기화를 수행합니다

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler logic for force_sync: pulls from remote and if successful, pushes changes to remote.
    async forceSync(): Promise<SyncResult> { const pullResult = await this.pullFromRemote(); if (pullResult.success) { return await this.pushToRemote(); } return pullResult; }
  • MCP tool handler that calls syncManager.forceSync() and returns formatted response.
    private async handleForceSync(args: any) { const result = await this.syncManager.forceSync(); return { content: [{ type: 'text', text: JSON.stringify({ operation: 'force_sync', ...result, }, null, 2), }], }; }
  • src/index.ts:338-345 (registration)
    Tool registration in MCP server tools list, including name, description, and empty input schema.
    { name: 'force_sync', description: '강제로 양방향 동기화를 수행합니다', inputSchema: { type: 'object', properties: {}, }, },
  • Input schema for force_sync tool (empty object).
    inputSchema: { type: 'object', properties: {}, }, },
  • src/index.ts:408-409 (registration)
    Dispatch case in tool request handler switch statement.
    case 'force_sync': return await this.handleForceSync(args);

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/YeomYuJun/remote-memory-mcp-server'

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