provitory-mcp
v1.0.5
Published
MCP server for Provitory AI Audit Platform - connects AI coding agents to your audit trail
Maintainers
Readme
Provitory MCP Server
MCP (Model Context Protocol) server that connects AI coding agents like Claude Desktop, Cursor, and Windsurf to Provitory - the AI audit platform for regulated industries.
Quick Start
1. Get your API key
- Sign in to Provitory
- Go to Settings → API Keys
- Create a new API key with
decisions:writepermission
2. Configure your AI agent
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"provitory": {
"command": "npx",
"args": ["provitory-mcp"],
"env": {
"PROVITORY_API_KEY": "pk_live_your_api_key_here"
}
}
}
}Cursor
Add to your Cursor MCP settings:
{
"provitory": {
"command": "npx",
"args": ["provitory-mcp"],
"env": {
"PROVITORY_API_KEY": "pk_live_your_api_key_here"
}
}
}Windsurf
Add to your Windsurf configuration:
{
"mcpServers": {
"provitory": {
"command": "npx",
"args": ["provitory-mcp"],
"env": {
"PROVITORY_API_KEY": "pk_live_your_api_key_here"
}
}
}
}3. Restart your AI agent
After saving the configuration, restart Claude Desktop/Cursor/Windsurf. You should see the Provitory tools available.
Available Tools
| Tool | Description |
|------|-------------|
| log_decision | Log an AI decision with full provenance tracking |
| register_anomaly_alert | Report anomalies with regulatory-aligned categorization |
| record_human_override | Record human overrides of AI decisions |
| create_decision_chain | Create multi-step decision workflows |
| add_chain_step | Add steps to decision chains |
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| PROVITORY_API_KEY | Yes | Your Provitory API key |
| PROVITORY_API_URL | No | Custom API URL (default: https://provitory.replit.app) |
Example Usage
Once configured, your AI agent will automatically log decisions. You can also explicitly request logging:
"Log this code review decision to Provitory with high confidence"
The agent will use the log_decision tool to create an audit trail entry.
Regulatory Compliance
Provitory supports audit logging for:
- FDA Part 11 - Life Sciences
- SOX - Financial Services
- HIPAA - Healthcare
- ISO 9001 - Manufacturing
All decisions are cryptographically hashed into a tamper-proof chain.
Support
- Documentation: https://provitory.replit.app/docs
- Email: [email protected]
