Public Docs / MCP / CLI
Phoenix MCP CLI
phoenix-cli is a command-line client for the Phoenix Security public REST and MCP
JSON-RPC API. It ships alongside the standalone MCP stdio bridge scripts in the same
open-source repository.
Repository
Source, full documentation, and releases: github.com/Security-Phoenix-demo/blue-cve-intelligence-mcp-cli
- docs/CLI.md — full command reference
- docs/REPOSITORY.md — repository structure and development guide
- mcp/README.md — MCP stdio bridge scripts without installing the CLI
Install
Requires Python 3.8+.
pip install "git+https://github.com/Security-Phoenix-demo/blue-cve-intelligence-mcp-cli.git"
phoenix-cli --help
Authenticate
Most read commands work without a key at the FREE tier. Generate an API key from My Account → Platform API Keys for higher tiers and for MCP calls (which always require a scoped key), then either:
export PHOENIX_API_KEY="phx_your_key_here"
# or
phoenix-cli configure --api-key phx_your_key_here
Common Commands
# Search
phoenix-cli search --severity CRITICAL --kev-only --limit 10
# Full intelligence for one CVE
phoenix-cli get CVE-2024-27198
# CISA Known Exploited Vulnerabilities
phoenix-cli kev --limit 20
# Trending CVEs
phoenix-cli trending
# Raw MCP JSON-RPC call
phoenix-cli mcp tools/call --params '{"name":"get_cve_intelligence","arguments":{"cve_id":"CVE-2024-27198"}}'
Full flag-by-flag reference, exit codes, and troubleshooting: see docs/CLI.md in the repository (linked above).
Related
- Installation Guide — Claude Desktop / ChatGPT Desktop stdio bridge setup
- Tools Reference
- Resources Reference
- Public API Reference
- MCP API Integration Guide