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.
| 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.
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 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-apiInstall 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-mcpInstall 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-nodejsInstall 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-searchexport SERPHOUSE_API_KEY="your_key_here"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."
Get your API key from the SERPHouse Dashboard and set it as an environment variable:
export SERPHOUSE_API_KEY="sk-..."MIT