@kajidog/mcp-tts-voicevox
Version:
VOICEVOX integration for MCP - Text-to-Speech server using VOICEVOX engine
86 lines • 2.47 kB
JSON
{
"name": "@kajidog/mcp-tts-voicevox",
"version": "0.8.1",
"description": "VOICEVOX integration for MCP - Text-to-Speech server using VOICEVOX engine",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"mcp-tts-voicevox": "./dist/index.js"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"voicevox",
"tts",
"text-to-speech",
"mcp",
"mcp-server",
"mcp-apps"
],
"author": {
"name": "kajidog",
"email": "dev@kajidog.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kajidog/mcp-tts-voicevox.git"
},
"bugs": {
"url": "https://github.com/kajidog/mcp-tts-voicevox/issues"
},
"homepage": "https://github.com/kajidog/mcp-tts-voicevox#readme",
"license": "ISC",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.7.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3",
"@kajidog/voicevox-client": "0.7.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.2",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^2.1.9",
"@kajidog/mcp-core": "0.1.0",
"@kajidog/player-ui": "0.1.0"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"scripts": {
"start": "node dist/index.js",
"start:stdio": "node dist/stdio.js",
"start:http": "MCP_HTTP_MODE=true node dist/index.js",
"start:http:win": "powershell -Command \"$env:MCP_HTTP_MODE='true'; node dist/index.js\"",
"dev": "NODE_ENV=development tsx src/index.ts",
"dev:stdio": "NODE_ENV=development tsx src/stdio.ts",
"dev:http": "NODE_ENV=development MCP_HTTP_MODE=true tsx src/index.ts",
"dev:http:win": "powershell -Command \"$env:NODE_ENV='development'; $env:MCP_HTTP_MODE='true'; tsx src/index.ts\"",
"start:bun": "bun dist/index.js",
"start:bun:http": "MCP_HTTP_MODE=true bun dist/index.js",
"dev:bun": "NODE_ENV=development bun src/index.ts",
"dev:bun:http": "NODE_ENV=development MCP_HTTP_MODE=true bun src/index.ts",
"build": "tsup",
"build:tsc": "tsc",
"build:clean": "rm -rf dist && pnpm build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run"
}
}