-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
64 lines (64 loc) · 1.83 KB
/
Copy pathserver.json
File metadata and controls
64 lines (64 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.DataViking-Tech/synthpanel",
"title": "SynthPanel",
"description": "Run synthetic focus groups using AI personas. 12 MCP tools for single prompts, full panel runs, and v3 branching (adaptive) instruments across any LLM provider (Claude, OpenAI, Gemini, xAI).",
"version": "0.9.1",
"repository": {
"url": "https://github.com/DataViking-Tech/SynthPanel",
"source": "github"
},
"websiteUrl": "https://synthpanel.dev",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "synthpanel",
"version": "0.9.1",
"runtimeHint": "uvx",
"runtimeArguments": [
{
"type": "positional",
"value": "synthpanel[mcp]"
},
{
"type": "positional",
"value": "synthpanel"
},
{
"type": "positional",
"value": "mcp-serve"
}
],
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "ANTHROPIC_API_KEY",
"description": "Anthropic API key (if using Claude models — default)",
"isRequired": false,
"isSecret": true
},
{
"name": "OPENAI_API_KEY",
"description": "OpenAI API key (if using GPT models)",
"isRequired": false,
"isSecret": true
},
{
"name": "GOOGLE_API_KEY",
"description": "Google API key (if using Gemini models)",
"isRequired": false,
"isSecret": true
},
{
"name": "XAI_API_KEY",
"description": "xAI API key (if using Grok models)",
"isRequired": false,
"isSecret": true
}
]
}
]
}