package.jsonโข2.12 kB
{
"name": "@williamzujkowski/strudel-mcp-server",
"version": "2.2.0",
"description": "Advanced MCP server for AI-powered music generation with Strudel.cc",
"type": "module",
"main": "dist/index.js",
"bin": {
"strudel-mcp": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:integration": "node tests/strudel-integration.js",
"test:browser": "node tests/browser-test.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"docker:build": "docker build -t strudel-mcp .",
"docker:run": "docker-compose up",
"prepublishOnly": "npm run build && npm test",
"prepare": "npm run build",
"validate": "echo '{\"jsonrpc\":\"2.0\",\"method\":\"tools/list\",\"id\":1}' | node dist/index.js",
"clean": "rm -rf dist coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/williamzujkowski/strudel-mcp-server.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"strudel",
"tidalcycles",
"music",
"ai",
"claude",
"live-coding",
"algorithmic-composition",
"web-audio",
"music-generation"
],
"author": "William Zujkowski <william.zujkowski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/williamzujkowski/strudel-mcp-server/issues"
},
"homepage": "https://github.com/williamzujkowski/strudel-mcp-server#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}