home / mcp / promptheus mcp server
Exposes prompt refinement, tweaking, and provider/model inspection as MCP endpoints for integration.
Configuration
View docs{
"mcpServers": {
"abhichandra21-promptheus": {
"command": "promptheus",
"args": [
"mcp"
]
}
}
}You will deploy and operate the Promptheus MCP server to expose intelligent prompt refinement capabilities through standardized MCP endpoints. This server lets clients refine prompts, tweak prompts, and inspect models and providers in a consistent way, enabling seamless integration with automation, UIs, and workflows.
Run the MCP server from your environment to expose prompt refinement capabilities to MCP clients. You can start a remote HTTP endpoint or use a local standard I/O interface, depending on your deployment and integration needs. Clients can request prompt refinement, apply targeted tweaks, and discover available models and providers through the MCP tools exposed by the server.
Prerequisites you need before installation:
Install the Promptheus MCP-enabled package and its runtime dependencies:
pip install promptheus
```
```bash
# Install the MCP runtime support if you plan to run the MCP server directly
pip install mcpYou can run the MCP server in two common ways. Choose the one that best fits your workflow.
# Start the MCP server via the Promptheus CLI
promptheus mcp
# Or start the MCP server directly with Python
python -m promptheus.mcp_serverIntelligent prompt refinement with optional clarification questions. Accepts a prompt and optional answers to guide the refinement and returns a refined prompt with an action hint.
Apply targeted modifications to an existing prompt. Provide the current prompt and a description of changes to produce a modified version.
Discover available models from configured providers. Returns the availability and model list per provider.
Check provider configuration status and the currently selected model for each provider.
Test environment configuration and API connectivity for configured providers.