An MCP (Model Context Protocol) server that provides access to OriginalVoices AI twins for audience research. Add to your claudedesktopconfig.json: Ask questions to a specific audience using OriginalVoices AI twins. Parameters: You can create an API key on the OriginalVoices Platform.
Add this skill
npx mdskills install ovlabs/mcp-server-originalvoicesClean MCP server for audience research with clear docs, but overly permissive file/shell access
1# OriginalVoices MCP Server23[](https://www.npmjs.com/package/@originalvoices/mcp-server)45An MCP (Model Context Protocol) server that provides access to [OriginalVoices](https://originalvoices.ai) AI twins for audience research.67## Installation89```bash10npm install @originalvoices/mcp-server11```1213## Configuration1415### Environment Variables1617| Variable | Description | Required |18|----------|-------------|----------|19| `ORIGINALVOICES_API_KEY` | Your OriginalVoices API key | Yes |2021### Claude Desktop2223Add to your `claude_desktop_config.json`:2425```json26{27 "mcpServers": {28 "originalvoices": {29 "command": "npx",30 "args": ["@originalvoices/mcp-server"],31 "env": {32 "ORIGINALVOICES_API_KEY": "your-api-key"33 }34 }35 }36}37```3839### From Source4041```json42{43 "mcpServers": {44 "originalvoices": {45 "command": "node",46 "args": ["/path/to/ov-mcp-server/dist/index.js"],47 "env": {48 "ORIGINALVOICES_API_KEY": "your-api-key"49 }50 }51 }52}53```5455## Tools5657### ask_twins5859Ask questions to a specific audience using OriginalVoices AI twins.6061**Parameters:**6263| Name | Type | Description |64|------|------|-------------|65| `audience` | string | Description of the audience |66| `questions` | string[] | Array of questions to ask the audience |6768**Example:**6970```json71{72 "audience": "UK, 18-30, fitness enthusiasts",73 "questions": [74 "When purchasing running shoes, what's most important to you?",75 "How often do you replace your running shoes?"76 ]77}78```7980## Development8182```bash83# Install dependencies84npm install8586# Build87npm run build8889# Watch mode90npm run dev91```9293## FAQ9495### How do I get an API key?9697You can create an API key on the [OriginalVoices Platform](https://platform.originalvoices.ai).9899## License100101MIT102
Full transparency — inspect the skill content before installing.