mirror of
https://github.com/AIPexStudio/AIPex.git
synced 2026-05-13 18:51:35 +00:00
48 lines
963 B
JSON
48 lines
963 B
JSON
{
|
|
"name": "aipex-mcp-bridge",
|
|
"version": "1.0.0",
|
|
"description": "MCP bridge that connects AI agents (Cursor, Claude, VS Code Copilot, etc.) to the AIPex browser extension via WebSocket",
|
|
"type": "module",
|
|
"bin": {
|
|
"aipex-mcp-bridge": "./dist/bridge.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsx src/bridge.ts"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.5.13",
|
|
"@types/node": "^22.0.0",
|
|
"tsup": "^8.0.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"aipex",
|
|
"browser",
|
|
"cursor",
|
|
"claude",
|
|
"copilot",
|
|
"websocket",
|
|
"bridge"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/AIPexStudio/aipex-whole.git",
|
|
"directory": "aipex/mcp-bridge"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|