/install jump-once-proxy
JumpOnce Proxy
Forward HTTP/WS requests through JumpOnce proxy to access overseas resources.
Setup
Get API Key
- Register & login at panel.jumptox.top
- Go to Console → API Keys → Create
- Copy the key (starts with
jk_live_)
Configure
export JUMPONCE_API_KEY="jk_live_xxxxxxxxxxxx"
Or save it in workspace TOOLS.md for persistent access.
Quick Usage
Option A: Python SDK
pip install jump-once
from jump import Client
client = Client(api_key="jk_live_xxxxxxxxxxxx")
# HTTP GET
result = client.http.forward(url="https://example.com/api")
print(result.status_code, result.body)
# HTTP POST
result = client.http.forward(
url="https://api.example.com/data",
method="POST",
body='{"key": "value"}',
headers={"Content-Type": "application/json"},
)
Option B: Direct API Call
import requests
resp = requests.post(
"http://api.jumptox.top/api/v1/http/request",
json={
"url": "https://example.com/api",
"method": "GET",
"headers": {},
"params": {},
"timeout": 30,
},
headers={"Authorization": "Bearer jk_live_xxxxxxxxxxxx"},
)
print(resp.json())
Option C: Bundled Script
python scripts/forward_request.py --url "https://example.com" --api-key "jk_live_xxx"
Use --raw flag for unparsed response, --body for POST data.
Endpoints
- Structured forward:
POST /api/v1/http/request— returns{code, data: {statusCode, headers, body, elapsed}} - Raw passthrough:
POST /api/v1/http/raw— returns target's raw response - WebSocket: See API Reference for channel management
Limits
- HTTP body: 10 MB | Timeout: 120 s | Redirects: 5
- Allowed ports: 80, 443, 8080, 8443
- WS frame: 1 MB | WS idle: 30 min
Full API docs: references/api-reference.md
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install jump-once-proxy - 安装完成后,直接呼叫该 Skill 的名称或使用
/jump-once-proxy触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
通过 JumpOnce 代理服务访问海外被封禁的 API(币安 US、GitHub、Google、OpenAI 等),支持 HTTP 转发和 WebSocket 透传,出口节点位于 Oracle Cloud 美国凤凰城 是什么?
Access overseas/external URLs via JumpOnce proxy service (jumptox.top). Use when: (1) needing to fetch content from websites blocked or unreachable from the... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 105 次。
如何安装 通过 JumpOnce 代理服务访问海外被封禁的 API(币安 US、GitHub、Google、OpenAI 等),支持 HTTP 转发和 WebSocket 透传,出口节点位于 Oracle Cloud 美国凤凰城?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install jump-once-proxy」即可一键安装,无需额外配置。
通过 JumpOnce 代理服务访问海外被封禁的 API(币安 US、GitHub、Google、OpenAI 等),支持 HTTP 转发和 WebSocket 透传,出口节点位于 Oracle Cloud 美国凤凰城 是免费的吗?
是的,通过 JumpOnce 代理服务访问海外被封禁的 API(币安 US、GitHub、Google、OpenAI 等),支持 HTTP 转发和 WebSocket 透传,出口节点位于 Oracle Cloud 美国凤凰城 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
通过 JumpOnce 代理服务访问海外被封禁的 API(币安 US、GitHub、Google、OpenAI 等),支持 HTTP 转发和 WebSocket 透传,出口节点位于 Oracle Cloud 美国凤凰城 支持哪些平台?
通过 JumpOnce 代理服务访问海外被封禁的 API(币安 US、GitHub、Google、OpenAI 等),支持 HTTP 转发和 WebSocket 透传,出口节点位于 Oracle Cloud 美国凤凰城 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 通过 JumpOnce 代理服务访问海外被封禁的 API(币安 US、GitHub、Google、OpenAI 等),支持 HTTP 转发和 WebSocket 透传,出口节点位于 Oracle Cloud 美国凤凰城?
由 men459(@men459)开发并维护,当前版本 v1.0.0。