plum-control-mcp/package.json
Natalie 4c8b5702f9 feat(@applications/plum-control-mcp): add http bridge endpoint for tvanarchy
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-09 19:50:44 -07:00

23 lines
621 B
JSON

{
"name": "@lilith/plum-control-mcp",
"version": "0.1.0",
"private": true,
"description": "MCP server for controlling VLC + listing displays on plum (the MacBook). Backs onto VLC's HTTP/Lua interface for real seek/scrub control.",
"type": "module",
"main": "./src/index.ts",
"bin": {
"plum-control-mcp": "./src/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"bridge": "bun run src/http.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.4.0"
}
}