smithery/neversight

google-serper-search

This skill should be used when the user asks to "search the web", "search for information", "find information online", "search Google", "search for images", "find pictures", or requests any web search or image search functionality.

Installation

$ npx skills add smithery/neversight --skill google-serper-search

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,034 B
  • docs SUMMARY.md 259 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Google Serper Search

This skill enables you to search the web and find images using the Serper API.

When to Use This Skill

Use this skill when the user:

  • Asks to search for information online
  • Needs current/recent information not in your knowledge base
  • Requests to find images or pictures
  • Wants to verify facts or get latest updates
  • Asks questions that require web search

How to Use

Web Search

When the user needs web search, first cd into the skill directory, then run:

SERPER_API_KEY=$(moltbot config get google.serper_api_key) python3 scripts/serper_search.py "search query" web

Alternatively, if the key is already in your environment, just run:

python3 scripts/serper_search.py "search query" web

The script returns JSON with:

  • knowledgeGraph: Key facts about the topic
  • organic: Search results with title, link, and snippet
  • peopleAlsoAsk: Related questions
  • relatedSearches: Related search terms

Image Search

When the user needs images, first cd into the skill directory, then run:

SERPER_API_KEY=$(moltbot config get google.serper_api_key) python3 scripts/serper_search.py "search query" images

Returns JSON with image URLs, thumbnails, dimensions, and sources.

Response Format

After getting search results:

  1. Parse the JSON response
  2. Present results in a clear, organized format
  3. Include relevant links and sources
  4. For images, describe what was found and provide image URLs

Example Usage

User: "Search for the latest news about AI" You: Use Bash tool to run the search script, then format and present the results.

User: "Find pictures of mountains" You: Use Bash tool to run image search, then present the image URLs and descriptions.