echonodesync
Version:
Autonomous, pluggable, secure memory bridge for agent/human/ritual ecosystems (DreamWeaver, EchoThreads, etc.)
14 lines (11 loc) • 436 B
JavaScript
// echonodesync-mcp-register: Outputs MCP manifest and entrypoint for agentic discovery
const path = require('path');
const fs = require('fs');
const manifestPath = path.resolve(__dirname, 'mcp-manifest.json');
const entrypoint = path.resolve(__dirname, 'server.js');
const manifest = fs.readFileSync(manifestPath, 'utf8');
console.log(JSON.stringify({
manifest: JSON.parse(manifest),
entrypoint
}, null, 2));