package.json•785 B
{
"name": "mcp-spotify-server",
"version": "1.0.0",
"description": "MCP Server for Spotify integration with LLM",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsx watch src/index.ts"
},
"keywords": ["mcp", "spotify", "llm", "music"],
"author": "Felippe Borello",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"spotify-web-api-node": "^5.0.2",
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"open": "^10.0.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"typescript": "^5.3.0",
"tsx": "^4.6.0"
}
}