| 1234567891011121314151617181920 |
- #!/usr/bin/env bash
- set -euo pipefail
- cd "$(dirname "$0")"
- if [ -f .env ]; then
- # shellcheck disable=SC1091
- source .env
- fi
- if [ -f .venv/bin/activate ]; then
- # shellcheck disable=SC1091
- source .venv/bin/activate
- fi
- CONF="${MCPORTER_CONF:-$HOME/.openclaw/workspace/config/mcporter.json}"
- mcporter --config "$CONF" call trends.resolve_entity keyword=bitcoin
- mcporter --config "$CONF" call trends.get_related_queries keyword=bitcoin
- mcporter --config "$CONF" call trends.get_related_topics keyword=bitcoin
|