origin-mcp 0.8.3

MCP server for Origin, the local-first personal agent memory layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node
"use strict";

const { spawn } = require("child_process");
const { join } = require("path");

const binaryName = process.platform === "win32" ? "origin-mcp.exe" : "origin-mcp";
const bin = join(__dirname, "bin", binaryName);
const child = spawn(bin, process.argv.slice(2), { stdio: "inherit" });

child.on("exit", (code) => process.exit(code ?? 1));
process.on("SIGTERM", () => child.kill("SIGTERM"));
process.on("SIGINT", () => child.kill("SIGINT"));