-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
112 lines (112 loc) · 3.47 KB
/
server.json
File metadata and controls
112 lines (112 loc) · 3.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "io.github.abhichandra21/promptheus",
"title": "Promptheus",
"description": "AI-powered prompt refinement with adaptive questioning and multi-provider support (6+ LLM backends)",
"version": "0.3.1",
"repository": {
"url": "https://github.com/abhichandra21/Promptheus.git",
"source": "github"
},
"websiteUrl": "https://github.com/abhichandra21/Promptheus",
"packages": [
{
"registryType": "pypi",
"identifier": "promptheus",
"version": "0.3.1",
"runtimeHint": "python",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "GOOGLE_API_KEY",
"description": "Google Gemini API key (optional, at least one provider required)",
"isRequired": false,
"isSecret": true
},
{
"name": "ANTHROPIC_API_KEY",
"description": "Anthropic Claude API key (optional, at least one provider required)",
"isRequired": false,
"isSecret": true
},
{
"name": "OPENAI_API_KEY",
"description": "OpenAI API key (optional, at least one provider required)",
"isRequired": false,
"isSecret": true
},
{
"name": "GROQ_API_KEY",
"description": "Groq API key (optional, at least one provider required)",
"isRequired": false,
"isSecret": true
},
{
"name": "QWEN_API_KEY",
"description": "Alibaba Qwen API key (optional, at least one provider required)",
"isRequired": false,
"isSecret": true
},
{
"name": "GLM_API_KEY",
"description": "Zhipu GLM API key (optional, at least one provider required)",
"isRequired": false,
"isSecret": true
},
{
"name": "PROMPTHEUS_PROVIDER",
"description": "Override provider selection (gemini, anthropic, openai, groq, qwen, glm)",
"isRequired": false,
"isSecret": false
},
{
"name": "PROMPTHEUS_MODEL",
"description": "Override model selection for the chosen provider",
"isRequired": false,
"isSecret": false
}
]
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"tools": [
{
"name": "refine_prompt",
"description": "Intelligently refine prompts with adaptive questioning workflow"
},
{
"name": "tweak_prompt",
"description": "Make surgical modifications to existing prompts"
},
{
"name": "list_models",
"description": "Discover available models for each AI provider"
},
{
"name": "list_providers",
"description": "Check provider configuration status"
},
{
"name": "validate_environment",
"description": "Validate API keys and test provider connections"
}
],
"features": [
"Adaptive task detection (analysis vs generation)",
"Multi-provider support (6+ AI backends)",
"Interactive and structured question modes",
"Session history management",
"Privacy-preserving telemetry"
],
"categories": [
"AI Tools",
"Developer Productivity",
"Prompt Engineering",
"LLM Utilities"
]
}
}
}