Brightsy MCP Server

{ "name": "brightsy-mcp", "version": "1.0.0", "description": "MCP server that connects to an OpenAI-compatible AI agent", "main": "dist/index.js", "type": "module", "scripts": { "build": "tsc", "start": "npm run build && node dist/index.js", "test": "npm run build && node dist/run-tests.js", "test:direct": "npm run build && node dist/test-direct.js", "test:cli": "npm run build && node dist/test-agent-proxy.js", "test:cursor": "npm run build && node dist/test-cursor.js", "test:jsonrpc": "npm run build && node dist/test-jsonrpc.js" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "zod": "^3.21.4" }, "devDependencies": { "@types/node": "^18.15.11", "typescript": "^5.0.4" } }