UNPKG

@civic/nexus-bridge

Version:

Stdio <-> HTTP/SSE MCP bridge with Civic auth handling

78 lines (77 loc) 1.94 kB
{ "name": "@civic/nexus-bridge", "version": "0.1.1", "description": "Stdio <-> HTTP/SSE MCP bridge with Civic auth handling", "main": "dist/index.js", "type": "module", "bin": { "nexus-bridge": "./bin/cli.js" }, "scripts": { "prebuild": "tsx scripts/update-version.ts", "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "watch": "tsx watch src/index.ts", "clean": "rm -rf dist", "prepublishOnly": "yarn clean && yarn build", "lint": "eslint .", "compile": "yarn build && bun build dist/compiled-cli.js --compile --minify --outfile nexus-bridge", "prepackage:homebrew": "yarn compile", "package:homebrew": "scripts/package-for-homebrew.sh" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.9.0", "content-type": "^1.0.5", "dotenv": "^16.4.5", "eventsource": "^3.0.6", "express": "^5.1.0", "inquirer": "^12.6.1", "jose": "^6.0.11", "open": "^10.1.0", "raw-body": "^3.0.0", "zod": "^3.25.28", "zod-to-json-schema": "^3.24.5" }, "devDependencies": { "@types/content-type": "^1.1.8", "@types/eventsource": "^3.0.0", "@types/express": "^5.0.1", "@types/node": "^22.14.0", "eslint": "^9.22.0", "eslint-config-custom": "^0.0.0", "tsx": "^4.7.1", "typescript": "^5.8.2" }, "engines": { "node": ">=18.0.0" }, "license": "MIT", "keywords": [ "mcp", "civic", "llm", "bridge", "stdio", "http", "sse", "ai" ], "repository": { "type": "git", "url": "https://github.com/civicteam/civic-mcp.git", "directory": "packages/nexus-bridge" }, "homepage": "https://github.com/civicteam/civic-mcp/tree/main/packages/nexus-bridge#readme", "bugs": { "url": "https://github.com/civicteam/civic-mcp/issues" }, "files": [ "bin/", "dist/", "README.md" ], "publishConfig": { "access": "public" } }