-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.11 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mcp-listen",
"version": "0.1.1",
"description": "Give your AI agents the ability to listen. Microphone capture and speech-to-text tools for MCP-compatible agents.",
"mcpName": "io.github.analyticsinmotion/mcp-listen",
"main": "index.js",
"bin": {
"mcp-listen": "./index.js"
},
"files": [
"index.js",
"lib/",
"README.md",
"LICENSE",
"ATTRIBUTION.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"voice",
"microphone",
"speech-to-text",
"audio",
"capture",
"whisper",
"ollama",
"decibri",
"stt",
"transcription"
],
"scripts": {
"test": "node test/smoke.js"
},
"author": "Analytics in Motion",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/analyticsinmotion/mcp-listen"
},
"homepage": "https://github.com/analyticsinmotion/mcp-listen",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"decibri": "^1.0.0"
},
"optionalDependencies": {
"@kutalia/whisper-node-addon": "^1.0.1",
"ollama": "^0.6.0"
},
"engines": {
"node": ">=18"
}
}