package.json•663 B
{
"name": "midi-analyzer-mcp",
"version": "1.0.0",
"description": "MCP server for analyzing MIDI SMF files",
"main": "dist/index.js",
"bin": {
"midi-analyzer-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsx --watch src/index.ts"
},
"keywords": ["midi", "mcp", "server", "music", "analysis"],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"midi-file": "^1.2.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}