Files
wehub-resource-sync 979fb22d7c
CI / test (20, macos-latest) (push) Has been cancelled
CI / test (20, ubuntu-latest) (push) Has been cancelled
CI / test (22, macos-latest) (push) Has been cancelled
CI / test (22, ubuntu-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:01:18 +08:00

12 lines
418 B
JavaScript
Executable File

#!/usr/bin/env node
import("@agentmemory/agentmemory/dist/standalone.mjs").catch((err) => {
console.error(
"[@agentmemory/mcp] Failed to load standalone entrypoint from @agentmemory/agentmemory.",
);
console.error(
"[@agentmemory/mcp] Try installing manually: npm i -g @agentmemory/agentmemory",
);
console.error(err instanceof Error ? err.stack || err.message : String(err));
process.exit(1);
});