@chinchillaenterprises/mcp-ai-assistant
Version:
MCP server for AI assistant with ElevenLabs text-to-speech integration
66 lines (65 loc) • 1.5 kB
JSON
{
"name": "@chinchillaenterprises/mcp-ai-assistant",
"version": "1.0.3",
"description": "MCP server for AI assistant with ElevenLabs text-to-speech integration",
"main": "dist/index.js",
"bin": {
"mcp-ai-assistant": "dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"ai-assistant",
"elevenlabs",
"text-to-speech",
"tts",
"voice",
"ai-voice",
"audio",
"ai"
],
"author": "Chinchilla Enterprises",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChinchillaEnterprises/mcp-ai-assistant.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"axios": "^1.7.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"form-data": "^4.0.0",
"uuid": "^9.0.1",
"zod": "^3.22.0",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"speak.js",
"README.md",
"FIXES_APPLIED.md"
]
}