Set up Verosight API access. Run this first to configure your API key.
Help the user set up Verosight API access. Follow these steps:
Check if the environment variable VEROSIGHT_API_KEY is set:
echo ${VEROSIGHT_API_KEY:+"Key is set: ${VEROSIGHT_API_KEY:0:12}..."}
echo ${VEROSIGHT_API_KEY:-"No key set"}
Tell the user:
export VEROSIGHT_API_KEY=vlt_live_YOUR_KEYOr add it permanently to their shell profile:
echo 'export VEROSIGHT_API_KEY=vlt_live_YOUR_KEY' >> ~/.zshrc
curl -s https://api.verosight.com/v1/account/balance -H "X-API-Key: $VEROSIGHT_API_KEY"
Show the user their credit balance and tier.
For the best experience, suggest setting up the MCP server so all Verosight tools are available automatically:
Remote SSE (recommended for Cursor/Windsurf):
Add to .cursor/mcp.json:
{
"mcpServers": {
"verosight": {
"url": "https://api.verosight.com/v1/mcp/sse",
"headers": {
"X-API-Key": "vlt_live_YOUR_KEY"
}
}
}
}
Local binary (for Claude Desktop):
curl -fsSL https://verosight.com/download/mcp/install.sh | sh