PromptVault
Open-source prompt versioning, evaluation, and management as an MCP server.
What is PromptVault?
PromptVault is a self-hosted tool for AI engineers and prompt engineers to:
- Version prompts like code with immutable versions and rollback support
- Evaluate prompts against datasets using LLM providers (OpenAI, Anthropic, Ollama)
- Access everything through an MCP server, CLI, or REST API
Quickstart
Install (no clone needed)
pip install promptvault
Or with uv/pipx:
uvx --from git+https://github.com/KrishBnsl/promptVault.git promptctl --help
Or with Docker:
docker run -p 8000:8000 -e GEMINI_API_KEY=your-key ghcr.io/krishbnsl/promptvault
From Source
git clone https://github.com/KrishBnsl/promptVault.git
cd promptVault
uv sync
cp .env.example .env
# Edit .env with your API keys
Create Your First Prompt
promptctl prompt create summarize \
--content "Summarize the following article in {tone} style:\n\n{article}" \
--description "Summarizes an article" \
--variables '{"tone": "concise", "article": "string"}' \
--model-config '{"provider": "openai", "model": "gpt-4o-mini", "temperature": 0.2}' \
--tags "summarization,content"
Create a Dataset
echo '{"input": {"article": "AI is transforming..."}, "expected_output": "AI transforms..."}' > dataset.jsonl
promptctl dataset create article-summaries --file dataset.jsonl
Run Evaluation
promptctl eval run summarize --dataset article-summaries
Use with MCP (Claude Desktop)
Add to your Claude Desktop config:
{
"mcpServers": {
"promptvault": {
"command": "promptctl",
"args": ["serve"]
}
}
}
CLI Reference
promptctl prompt create <name> --content <text> [options]
promptctl prompt list [--tags TAGS] [--limit N]
promptctl prompt show <name> [--version N]
promptctl prompt versions <name>
promptctl prompt diff <name> <version-a> <version-b>
promptctl prompt rollback <name> --version N
promptctl dataset create <name> --file <jsonl-or-json>
promptctl dataset list
promptctl eval run <prompt-name> --dataset <dataset-name>
promptctl eval report <evaluation-id>
promptctl serve [--stdio|--http] [--port 8000]
promptctl web [--port 8080]
MCP Tools
| Tool | Description |
|---|---|
prompt_create |
Create a new prompt with initial version |
prompt_get |
Retrieve a prompt version |
prompt_list |
List all prompts |
prompt_versions |
List all versions of a prompt |
prompt_diff |
Diff two prompt versions |
prompt_rollback |
Rollback to a previous version |
dataset_create |
Create a dataset |
dataset_list |
List datasets |
dataset_get |
Get dataset with items |
evaluation_run |
Run evaluation |
evaluation_status |
Check evaluation status |
evaluation_report |
Get evaluation report |
evaluation_compare |
Compare two evaluations |
REST API
Base URL: http://localhost:8000/api
# Create a prompt
curl -X POST http://localhost:8000/api/prompts \
-H "Content-Type: application/json" \
-d '{"name": "test", "content": "Hello {name}"}'
# List prompts
curl http://localhost:8000/api/prompts
# Get a prompt
curl http://localhost:8000/api/prompts/test
Configuration
Copy .env.example to .env and configure:
PROMPTVAULT_DB_PATH=./promptvault.db
PROMPTVAULT_DEFAULT_PROVIDER=openai
OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...
GEMINI_API_KEY=...
OLLAMA_BASE_URL=http://localhost:11434
Architecture
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ MCP Client │ │ CLI │ │ REST Client │
│ (Claude etc) │ │ (promptctl) │ │ (curl, apps) │
└──────┬──────┘ └──────┬──────┘ └──────┬──────┘
│ │ │
▼ ▼ ▼
┌─────────────────────────────────────────────────┐
│ PromptVault Core │
│ ┌─────────────┐ ┌──────────────┐ ┌──────────┐ │
│ │ Versioning │ │ Evaluation │ │ Storage │ │
│ │ Engine │ │ Engine │ │ Layer │ │
│ └─────────────┘ └──────────────┘ └──────────┘ │
│ ┌──────────────────────────────────────────┐ │
│ │ SQLite Database (local) │ │
│ └──────────────────────────────────────────┘ │
└─────────────────────────────────────────────────┘
Documentation
📖 Full docs: https://krishbnsl.github.io/promptVault/
License
MIT License - see LICENSE for details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pvlt-0.1.0.tar.gz.
File metadata
- Download URL: pvlt-0.1.0.tar.gz
- Upload date:
- Size: 414.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e40ba8cd5e36ebfcf3cfe6162866ec5fccdbf856ddeade81a583f1cdfe8ad330
|
|
| MD5 |
37fd8be75983e3a538942626deec2c91
|
|
| BLAKE2b-256 |
de2ee69e6de336f30349555bc29d451e0504f50178bb0785994f24a7d5f34dad
|
Provenance
The following attestation bundles were made for pvlt-0.1.0.tar.gz:
Publisher:
publish-pypi.yml on KrishBnsl/promptVault
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pvlt-0.1.0.tar.gz -
Subject digest:
e40ba8cd5e36ebfcf3cfe6162866ec5fccdbf856ddeade81a583f1cdfe8ad330 - Sigstore transparency entry: 2538508388
- Sigstore integration time:
-
Permalink:
KrishBnsl/promptVault@cf6ea88f1282f1309eb598bf53e826d60c50fe1b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/KrishBnsl
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@cf6ea88f1282f1309eb598bf53e826d60c50fe1b -
Trigger Event:
release
-
Statement type:
File details
Details for the file pvlt-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pvlt-0.1.0-py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e3bed49e3bd92941cdc76c29b5b342a6d6c88ec7786958c44ad335fbc6c5f9d
|
|
| MD5 |
63a04e6f6d9f35a7415b20a96d9c9639
|
|
| BLAKE2b-256 |
704fb4346ae7d31c8cfe47d7731125edccf915fb613b44c80b409cfe13855404
|
Provenance
The following attestation bundles were made for pvlt-0.1.0-py3-none-any.whl:
Publisher:
publish-pypi.yml on KrishBnsl/promptVault
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pvlt-0.1.0-py3-none-any.whl -
Subject digest:
0e3bed49e3bd92941cdc76c29b5b342a6d6c88ec7786958c44ad335fbc6c5f9d - Sigstore transparency entry: 2538508737
- Sigstore integration time:
-
Permalink:
KrishBnsl/promptVault@cf6ea88f1282f1309eb598bf53e826d60c50fe1b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/KrishBnsl
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@cf6ea88f1282f1309eb598bf53e826d60c50fe1b -
Trigger Event:
release
-
Statement type: