AI agent payment security - spending limits, whitelists, and human approval.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"clawvault": {
"env": {
"CLAWVAULT_API_KEY": "cv_live_your_api_key_here"
},
"args": [
"clawvault-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AI agent payment security - spending limits, whitelists, and human approval.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'clawvault-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked clawvault-mcp-server against OSV.dev.
Click any tool to inspect its schema.
skill_documentationPlain text skill documentation that teaches agents how to use the ClawVault API
https://api.clawvault.cc/skill
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / security
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
An evil MCP server used for redteam testing
A Model Context Protocol server for building an investor agent
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.andrewszk/clawvault-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for ClawVault - AI agent payment security layer.
npm install -g clawvault-mcp-server
Or use directly with npx (no install needed):
npx clawvault-mcp-server
Add to your Claude Desktop config:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"clawvault": {
"command": "npx",
"args": ["clawvault-mcp-server"],
"env": {
"CLAWVAULT_API_KEY": "cv_live_your_api_key_here"
}
}
}
}
Restart Claude Desktop after saving.
cv_live_...)Once connected, Claude has access to these tools:
Request a payment through ClawVault. The payment will be evaluated against your security rules.
Amount: "10.00"
Token: "USDC"
Recipient: "0x..."
Chain: "base"
Reason: "API credits" (optional)
Check if a payment would be allowed before making it. Returns whether it would auto-approve or need manual approval.
Check the status of a pending payment by ID.
List recent payment transactions with pagination.
Get vault status including wallet address, balances, and current spending limits.
Emergency freeze an agent to block all its payment requests.
request_payment tool| Variable | Required | Default | Description |
|---|---|---|---|
CLAWVAULT_API_KEY | Yes | - | Your ClawVault API key |
CLAWVAULT_API_URL | No | https://api.clawvault.cc | API base URL |
Not using Claude Desktop? Any AI agent can use ClawVault by reading the skill documentation:
https://api.clawvault.cc/skill
This returns plain text that teaches the agent how to use the ClawVault API.
# Clone the repo
git clone https://github.com/clawvault/mcp-server
# Install dependencies
npm install
# Build
npm run build
# Run locally
CLAWVAULT_API_KEY=cv_live_xxx npm start
MIT