AI agent payment security - spending limits, whitelists, and human approval.
{
"mcpServers": {
"io-github-andrewszk-clawvault-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 33 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
6 tools. ~400 tokens (0.2% of 200K).
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
request_paymentRequest a payment through ClawVault. The payment will be evaluated against your security rules.
check_limitsCheck if a payment would be allowed before making it. Returns whether it would auto-approve or need manual approval.
get_payment_statusCheck the status of a pending payment by ID.
list_transactionsList recent payment transactions with pagination.
get_vaultGet vault status including wallet address, balances, and current spending limits.
freeze_agentEmergency freeze an agent to block all its payment requests.
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 informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
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