Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from bundle
Install and run silkworm-mcp via uv (stdio/http) with health checks.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/start_silkworm_stdio.sh
1#!/usr/bin/env bash2set -euo pipefail34TARGET_DIR="${SILKWORM_MCP_DIR:-$HOME/.cache/silkworm-mcp}"56if [[ ! -f "$TARGET_DIR/pyproject.toml" ]]; then7echo "error: silkworm-mcp is not set up yet. Run scripts/setup_silkworm_mcp.sh first." >&28exit 19fi1011cd "$TARGET_DIR"12exec uv run python mcp_server.py --transport stdio13