serper
使用 Serper.dev API 以编程方式搜索 Google。当您需要执行网络搜索、在线查找信息或研究主题时使用。支持查询参数、结果限制和地理/语言定位。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~skylar-north-skylar-serpercURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~skylar-north-skylar-serper/file -o skylar-north-skylar-serper.md## 概述(中文)
使用 Serper.dev API 以编程方式搜索 Google。当您需要执行网络搜索、在线查找信息或研究主题时使用。支持查询参数、结果限制和地理/语言定位。
## 原文
# Serper.dev Google Search
Search Google via Serper.dev API. Clean, structured results without scraping.
## Quick Start
Requires `SERPER_API_KEY` environment variable.
```javascript
serper_search({
q: "OpenClaw AI agent",
num: 5,
gl: "us",
hl: "en"
})
```
## Parameters
| Param | Required | Default | Description |
|-------|----------|---------|-------------|
| `q` | Yes | — | Search query |
| `num` | No | 5 | Results count (1-100) |
| `gl` | No | — | Country code (us, uk, th) |
| `hl` | No | — | Language code (en, th) |
## Setup
1. Get API key: https://serper.dev
2. Set environment: `export SERPER_API_KEY=your_key`
## Tool Location
`tools/serper_search.js`