{ "name": "neuron-connectd", "version": "0.1.0", "private": true, "type": "module", "description": "Neuron MCP-connector bridge (Accessor). Isolates the MCP wire protocol (stdio framing, SSE, OAuth, server lifecycle) behind a flat loopback HTTP contract the El soul consumes.", "bin": { "neuron-connectd": "./dist/index.js" }, "scripts": { "dev": "tsx src/index.ts", "build": "tsc -p tsconfig.json", "bundle": "esbuild src/index.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/connectd.cjs", "bundle:servers": "esbuild node_modules/@modelcontextprotocol/server-filesystem/dist/index.js --bundle --platform=node --format=esm --target=node20 --banner:js=\"import{createRequire as __cr}from'module';const require=__cr(import.meta.url);\" --outfile=dist/servers/fs-server.mjs", "bundle:all": "npm run bundle && npm run bundle:servers", "start": "node dist/index.js" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "@modelcontextprotocol/server-filesystem": "^2026.1.14" }, "devDependencies": { "esbuild": "^0.28.0", "tsx": "^4.19.0", "typescript": "^5.6.0", "@types/node": "^24.0.0" } }