npx skills add smithery/s-hiraoku --skill brave-search-api
s-hiraoku/vscode-sidebar-terminal
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.
Installation
npx skills add s-hiraoku/vscode-sidebar-terminal --skill brave-search-api
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsAlso in this package
Other skills from s-hiraoku/vscode-sidebar-terminal · top by installs.
npx skills add s-hiraoku/vscode-sidebar-terminal
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,368 B -
docs
SUMMARY.md220 B
History
- First seen on skills.sh
- First recorded snapshot · 3 installs
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: BRAVEAPIKEY
Web Search
Endpoint
GET https://api.search.brave.com/res/v1/web/search
Parameters
q(required): Search querycount(optional): Results count (1-20, default 10)offset(optional): Pagination offset
Usage
Generate and execute this curl command:
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
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
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 jq to extract relevant fields:
# Get titles and URLs
| jq '.web.results[] | {title, url}'
# Get descriptions
| jq '.web.results[] | {title, description}'
# Get first 3 results
| jq '.web.results[:3]'
Common Workflows
Research a Technology
curl -s "https://api.search.brave.com/res/v1/web/search?q=VS+Code+extension+development+2024&count=10" \
-H "Accept: application/json" \
-H "X-Subscription-Token: $BRAVE_API_KEY" | jq '.web.results[:5] | .[] | {title, url}'
Find Error Solutions
curl -s "https://api.search.brave.com/res/v1/web/search?q=WebGL+context+lost+solution&count=10" \
-H "Accept: application/json" \
-H "X-Subscription-Token: $BRAVE_API_KEY" | jq '.web.results[] | {title, url, description}'
Notes
- URL encode spaces as
+or%20 - API key must be set in environment
- Rate limits apply per subscription tier