{ "name": "lineupify-mcp", "version": "0.6.0", "description": "MCP server that builds Spotify playlists from festival lineups, genres, moods, similar artists, other playlists or a blend of several people's taste. Bring your own Spotify client ID.", "license": "MIT", "author": { "name": "SHREESHMAN", "email": "shreeshhi@gmail.com" }, "repository": { "type": "git", "url": "git+https://github.com/SHREESHMAN/lineupify.git" }, "homepage": "https://shreeshman.github.io/lineupify/", "bugs": { "url": "https://github.com/SHREESHMAN/lineupify/issues" }, "mcpName": "io.github.SHREESHMAN/lineupify", "type": "module", "bin": { "lineupify-mcp": "dist/index.js" }, "main": "dist/index.js", "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md", "SECURITY.md", "docs" ], "engines": { "node": ">=20" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc -p tsconfig.json", "dev": "tsx src/index.ts", "test": "vitest run test/unit", "test:watch": "vitest test/unit", "test:live": "vitest run test/live", "smoke:spotify": "tsx test/smoke/spotify.ts", "lint": "eslint src test", "typecheck": "tsc -p tsconfig.json --noEmit", "prepublishOnly": "npm run typecheck && npm test && npm run build", "bundle:mcpb": "node scripts/build-mcpb.mjs", "version": "node scripts/sync-version.mjs && git add manifest.json server.json", "sync-version": "node scripts/sync-version.mjs", "coverage": "vitest run test/unit --coverage" }, "keywords": [ "mcp", "model-context-protocol", "spotify", "playlist", "festival", "lineup", "claude", "playlist-generator", "recommendations", "deezer", "lastfm", "blend" ], "dependencies": { "@modelcontextprotocol/server": "2.0.0", "open": "^11.0.2", "zod": "^4.2.0" }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/node": "^22.0.0", "@vitest/coverage-v8": "^4.1.11", "eslint": "^10.9.1", "tsx": "^4.19.0", "typescript": "^5.6.0", "typescript-eslint": "^8.0.0", "vitest": "^4.1.11" }, "overrides": { "zod": "$zod" } }