-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1020 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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
{
"name": "@originalvoices/mcp-server",
"version": "1.0.1",
"mcpName": "io.github.ovlabs/originalvoices",
"description": "MCP server for OriginalVoices - Ask AI twins questions about any audience",
"main": "dist/index.js",
"type": "module",
"bin": {
"originalvoices-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"originalvoices",
"ai",
"twins",
"audience-research"
],
"author": "OriginalVoices",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ovlabs/mcp-server-originalvoices.git"
},
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"originalvoices": "^0.11.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^25.0.8",
"typescript": "^5.9.3"
}
}