scan_urlRuns a live TLS handshake, reports vulnerable certificate keys, signatures, and key exchange, and persists the result by default.
API key by default · upload=false offline
postq-mcp connects GitHub Copilot, VS Code, Claude, Cursor, and compatible MCP clients to the same scanners and hybrid-signing controls available in the PostQ CLI.
Offline scans need no PostQ credential. Uploaded URL scans and signing tools use the API key saved by postq auth login.
scan_urlRuns a live TLS handshake, reports vulnerable certificate keys, signatures, and key exchange, and persists the result by default.
API key by default · upload=false offline
scan_codeReads a local path and detects weak RNG, signing hashes, JWT alg:none, AES-ECB, hardcoded keys, and classical-only signing.
Local files · no API key
signSigns UTF-8 data with a managed ML-DSA + classical hybrid key.
PostQ API key
verifyVerifies both halves of a PostQ hybrid signature and returns the complete verdict.
PostQ API key
Homebrew installs postq and postq-mcp. Go and release-archive installs are also supported.
brew install PostQDev/tap/postq
# Or install with Go:
go install github.com/postqdev/postq-cli/cmd/postq@latest
go install github.com/postqdev/postq-cli/cmd/postq-mcp@latest
# Optional: authenticate once for sign and verify
postq auth loginRun MCP: Add Server and choose stdio, or save this as .vscode/mcp.json. Start the server, then enable its tools from Chat's Configure Tools menu.
{
"servers": {
"postq": {
"type": "stdio",
"command": "postq-mcp",
"env": { "POSTQ_BIN": "postq" }
}
}
}Add the server to the client's MCP configuration. Absolute paths pin the exact trusted binaries that the client executes.
{
"mcpServers": {
"postq": {
"command": "/absolute/path/to/postq-mcp",
"env": { "POSTQ_BIN": "/absolute/path/to/postq" }
}
}
}scan_code reads only the path approved in the tool call.scan_url makes an outbound TLS connection to the requested host.upload=false for local-only execution.command -v postq
command -v postq-mcp
postq version
# Raw handshake and tool discovery
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{}}}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list"}' \
| postq-mcpFor timeouts, set POSTQ_MCP_TIMEOUT=5m. The accepted range is one second to ten minutes.
“Use PostQ to scan example.com and explain which cryptography must migrate before a cryptographically relevant quantum computer.”
Read the integration reference