io.github.ovlabs/originalvoices
MCP server for OriginalVoices - Ask AI twins questions about any audience
Open source Open in the app JSON README (API)
About
MCP server for OriginalVoices - Ask AI twins questions about any audience
Details
- Kind
- MCP servers
- Topic
- No topic detected
- Publisher
- ovlabs
- Origin
- official
- Category
- ferramentas
- Transport
- local
- Version
- 1.0.1
- Stars
- 3
- Forks
- 2
- Last push
- 2026-03-31T18:19:51Z
- Repository state
- ativo
- Language
- JavaScript
- Added
- 2026-08-29 04:00:58
- Updated
- 2026-08-29 04:00:58
- Origin id
io.github.ovlabs/originalvoices
README
# OriginalVoices MCP Server
[](https://www.npmjs.com/package/@originalvoices/mcp-server)
An MCP (Model Context Protocol) server that provides access to [OriginalVoices](https://originalvoices.ai) AI twins for audience research.
## Installation
```bash
npm install @originalvoices/mcp-server
```
## Configuration
### Environment Variables
| Variable | Description | Required |
|----------|-------------|----------|
| `ORIGINALVOICES_API_KEY` | Your OriginalVoices API key | Yes |
### Claude Desktop
Add to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"originalvoices": {
"command": "npx",
"args": ["@originalvoices/mcp-server"],
"env": {
"ORIGINALVOICES_API_KEY": "your-api-key"
}
}
}
}
```
### From Source
```json
{
"mcpServers": {
"originalvoices": {
"command": "node",
"args": ["/path/to/ov-mcp-server/dist/index.js"],
"env": {
"ORIGINALVOICES_API_KEY": "your-api-key"
}
}
}
}
```
## Tools
### ask_twins
Ask questions to a specific audience using OriginalVoices AI twins.
**Parameters:**
| Name | Type | Description |
|------|------|-------------|
| `audience` | string | Description of the audience |
| `questions` | string[] | Array of questions to ask the audience |
**Example:**
```json
{
"audience": "UK, 18-30, fitness enthusiasts",
"questions": [
"When purchasing running shoes, what's most important to you?",
"How often do you replace your running shoes?"
]
}
```
## Development
```bash
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
```
## FAQ
### How do I get an API key?
You can create an API key on the [OriginalVoices Platform](https://platform.originalvoices.ai).
## License
MIT