Agent skill · Backend & API

brave-search-api

This skill enables web searching using Brave Search API directly via curl. Use when searching for current information, news, articles, or web content. MCP server not required - calls API directly.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill brave-search-api-s-hiraoku-vscode-sidebar-termi --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/api/brave-search-api-s-hiraoku-vscode-sidebar-termi/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Brave Search API (Direct) ## Overview This skill enables web searching using the Brave Search API directly via curl commands. No MCP server required - saves context tokens. ## API Key Environment variable: `BRAVE_API_KEY` ## Web Search ### Endpoint ``` GET https://api.search.brave.com/res/v1/web/search ``` ### Parameters - `q` (required): Search query - `count` (optional): Results count (1-20, default 10) - `offset` (optional): Pagination offset ### Usage Generate and execute this curl command: ```bash curl -s "https://api.search.brave.com/res/v1/web/search?q=QUERY&count=10" \ -H "Accept: application/json" \ -H "X-Subscription-Token: $BRAVE_API_KEY" ``` ### Example ```bash curl -s "https://api.search.brave.com/res/v1/web/search?q=xterm.js+WebGL+tutorial&count=5" \ -H "Accept: application/json" \ -H "X-Subscription-Token: $BRAVE_API_KEY" | jq '.web.results[] | {title, url, description}' ``` ## Local Search ### Endpoint ``` GET https://api.search.brave.com/res/v1/local/search ``` ### Usage ```bash curl -s "https://api.search.brave.com/res/v1/local/search?q=coffee+near+Shibuya" \ -H "Accept: application/json" \ -H "X-Subscription-Token: $BRAVE_API_KEY" ``` ## Response Processing Use

What's inside
Steps it walks through
  1. Overview
  2. API Key
  3. Web Search
  4. Endpoint
  5. Parameters
  6. Usage
  7. Example
  8. Local Search
  9. Response Processing
  10. Common Workflows
  11. Research a Technology
  12. Find Error Solutions
  13. Notes
Ships with 1 file
  • metadata.json
Commands it runs
curl -s "https://api.search.brave.com/res/v1/web/search?q=QUERY&count=10" \
curl -s "https://api.search.brave.com/res/v1/web/search?q=xterm.js+WebGL+tutorial&count=5" \
curl -s "https://api.search.brave.com/res/v1/local/search?q=coffee+near+Shibuya" \
Get titles and URLs
Get descriptions
Get first 3 results
curl -s "https://api.search.brave.com/res/v1/web/search?q=VS+Code+extension+development+2024&count=10" \
curl -s "https://api.search.brave.com/res/v1/web/search?q=WebGL+context+lost+solution&count=10" \
More from claude-skill-registry
All skills →
About this skill
What does the brave-search-api skill do?

This skill enables web searching using Brave Search API directly via curl. Use when searching for current information, news, articles, or web content. MCP server not required - calls API directly.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill brave-search-api-s-hiraoku-vscode-sidebar-termi --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going