Skip to content

SERPHouse/agent-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SERPHouse logo

serpskills

Skills for SERPHouse — teach any AI agent how to use SERP APIs, MCP tools, and the Node.js SDK.

Drop-in skills that give your AI coding agent live web search, news, images, and SERP data — powered by SERPHouse.


serphouse.com MIT License


Table of Contents


Skills

Skill File What it teaches your AI agent
Search skills/search/SKILL.md Route questions to the right SERPHouse skill — meta-orchestrator
API skills/api/SKILL.md REST API endpoints, curl examples, rate limits, credit costs
MCP skills/mcp/SKILL.md MCP server config for Claude, Cursor, and any MCP client
Node.js skills/nodejs/SKILL.md @serphouse/serphouse-nodejs SDK — all 20 methods, typed

Each skill is a self-contained SKILL.md file. Drop it into your skills directory and your agent immediately understands SERPHouse.


Why These Skills?

AI agents don't inherently know third-party APIs. Without these skills, asking an agent to "search Google News via SERPHouse" would result in guesswork, hallucinated endpoints, and wasted time.

Each skill solves a specific problem:

Skill Problem it solves
api Agents don't know REST endpoint URLs, auth headers, rate limits, or batch task workflows — this skill gives them the full SERPHouse API reference as grounded knowledge.
mcp Agents in MCP-compatible clients (Claude, Cursor) need tool names and parameter schemas to call SERPHouse live — this skill maps every MCP tool with its exact input format.
nodejs Writing SDK code requires knowing method names, TypeScript types, import paths, and error handling patterns — this skill provides runnable examples for all 20 SDK methods.
search Without a router, an agent may check the wrong skill or miss information entirely — this skill teaches it which source to consult based on the question.

Together they eliminate hallucinations and let your agent ship real SERPHouse integrations on the first try.


Install

api

Install when you want your AI agent to call SERPHouse REST APIs directly — for ad-hoc curl commands, batch tasks, webhooks, or custom integrations.

npx skills add https://github.com/serphouse/agent-skills --skill serphouse-api

mcp

Install when you use an MCP-compatible client (Claude, Cursor, etc.) and want your agent to call SERPHouse tools live without writing code.

npx skills add https://github.com/serphouse/agent-skills --skill serphouse-mcp

nodejs

Install when you're building Node.js/TypeScript projects and want your agent to use the @serphouse/serphouse-nodejs SDK with full type safety.

npx skills add https://github.com/serphouse/agent-skills --skill serphouse-nodejs

search

Install alongside any of the above — it teaches your agent how to route questions to the right SERPHouse skill automatically.

npx skills add https://github.com/serphouse/agent-skills --skill serphouse-search

Set your API key

export SERPHOUSE_API_KEY="your_key_here"

Start prompting

Your AI agent now knows SERPHouse. Ask it things like:

"Search Google for the latest AI news using SERPHouse."

"Use the SERPHouse MCP tools to do a competitor analysis on OpenAI."

"Write a Node.js script with @serphouse/serphouse-nodejs that fetches Google Shopping results."

Authentication

Get your API key from the SERPHouse Dashboard and set it as an environment variable:

export SERPHOUSE_API_KEY="sk-..."

All four skills respect this convention.

License

MIT

About

A curated collection of reusable Agent Skills that help AI coding agents solve real development tasks more effectively. From internet search and documentation lookup to automation and project workflows, each skill is built for practical, everyday use.

Topics

Resources

License

Stars

2 stars

Watchers

0 watching

Forks

Contributors