一键导入
ngrok-cli
Use ngrok to create secure tunnels to localhost, exposing local servers to the internet for webhook testing, demos, and remote access.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use ngrok to create secure tunnels to localhost, exposing local servers to the internet for webhook testing, demos, and remote access.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use OpenCLI to turn any website, Electron app, or local tool into a CLI. 50+ adapters for social media, news, finance, and dev tools. Reuses Chrome login sessions with zero credentials. AI-agent ready with structured output.
Use the AWS CLI to manage S3 buckets, Lambda functions, EC2 instances, IAM, DynamoDB, and all AWS services from the terminal. Use this instead of the AWS MCP server.
Use the Azure CLI (az) to manage Azure resources including App Service, Functions, VMs, storage, and databases. Use this instead of the Azure MCP server.
Use Blender from the command line to render 3D scenes, run Python scripts for batch processing, and convert 3D file formats without the GUI.
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
Use FFmpeg to convert, process, and manipulate video and audio files from the terminal. Transcode formats, extract audio, create thumbnails, trim clips, and more.
| name | ngrok-cli |
| description | Use ngrok to create secure tunnels to localhost, exposing local servers to the internet for webhook testing, demos, and remote access. |
Secure tunneling to localhost. Expose local servers to the internet for webhooks, demos, and testing.
ngrok config add-authtoken YOUR_TOKEN # Set auth token (one-time)
ngrok http 3000 # Tunnel to localhost:3000
ngrok http 8080 # Tunnel to localhost:8080
ngrok http https://localhost:3000 # Tunnel to HTTPS local server
ngrok http --url=myapp.ngrok.io 3000 # Custom subdomain (paid)
ngrok tcp 22 # Tunnel SSH
ngrok tcp 5432 # Tunnel PostgreSQL
ngrok http 3000 --basic-auth="user:pass" # Add basic auth
ngrok http 3000 --inspect=false # Disable inspection
ngrok http 3000 --region=eu # European region
# Web interface at http://127.0.0.1:4040 while tunnel is running
ngrok http 3000 # Then open http://127.0.0.1:4040 for request inspector
ngrok api endpoints list # List active endpoints
ngrok api tunnels list # List active tunnels
& or run in separate terminal--log=stdout --log-format=json for parseable log outputngrok http for webhook testing (Stripe, GitHub, etc.)curl -s localhost:4040/api/tunnels | jq '.tunnels[0].public_url'ngrok http 3000 &
sleep 2
TUNNEL_URL=$(curl -s localhost:4040/api/tunnels | jq -r '.tunnels[0].public_url')
echo "Tunnel: $TUNNEL_URL"
# Configure webhook provider to send to $TUNNEL_URL/webhook
ngrok http 3000
# Share the https URL with mobile device on same network