Solana Vault Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Solana Vault Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) implementation for secure Solana blockchain wallet operations in python.
Solana Vault MCP provides secure wallet operations for Solana blockchain through a standardized Model Context Protocol interface. It allows AI assistants to securely interact with the Solana blockchain without direct access to private keys.
git clone https://github.com/olaxbt/solana-vault-mcp.git
cd solana-vault-mcp python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate pip install -r requirements.txt.env file based on .env.example: cp .env.example .env.env file to add your Solana private key and RPC URL.python run.pyThe server will start on the port specified in your .env file (default: 5000).
GET / - Welcome page with service informationGET /health - Health check endpointGET /api/mcp/ping - MCP service health checkPOST /api/mcp/query - Main MCP query endpointThe Solana Vault MCP supports the following actions:
wallet.info - Get wallet informationwallet.balance - Get SOL balancewallet.transfer - Transfer SOL to another walletwallet.transactions - Get recent transactionswallet.token_balance - Get token balance for a specific token{
"id": "request123",
"action": "wallet.balance",
"params": {}
}Response:
{
"id": "request123",
"result": {
"balance": 1.5,
"currency": "SOL",
"address": "YourSolanaPublicKey"
}
}solana-vault-mcp/
├── app/
│ ├── handlers/ # Action handlers
│ ├── routes/ # API routes
│ ├── services/ # Core services
│ └── utils/ # Utilities
├── logs/ # Log files
├── tests/ # Test cases
├── .env # Environment variables
├── .env.example # Example environment file
├── requirements.txt # Dependencies
├── run.py # Main entry point
└── README.md # DocumentationpytestMIT
Contributions are welcome! Please feel free to submit a Pull Request.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.