Agent Skills
Official AI agent skills for the SERPHouse ecosystem → teach AI agents how to use the REST API, MCP server, and Node.js SDK.
Official AI agent skills for the SERPHouse ecosystem. Teach AI agents how to use the SERPHouse REST API, MCP server, and Node.js SDK with accurate, grounded knowledge.
Available Skills
| Skill | Purpose |
|---|---|
| Search | Routes questions to the correct SERPHouse skill |
| API | Complete REST API reference |
| MCP | Complete MCP tool reference |
| Node.js | Full SDK documentation |
Installation
Install only the skill(s) you need.
Search (Router)
Routes SERPHouse questions to the correct skill doc. Always install this first.
npx skills add https://github.com/SERPHouse/agent-skills --skill serphouse-searchManual setupoptional
mkdir -p .skills/serphouse-search
curl -o .skills/serphouse-search/SKILL.md https://raw.githubusercontent.com/SERPHouse/agent-skills/master/skills/search/SKILL.mdAPI (REST)
REST API reference: endpoints, auth, parameters, rate limits, credit costs, and cURL examples.
npx skills add https://github.com/SERPHouse/agent-skills --skill serphouse-apiManual setupoptional
mkdir -p .skills/serphouse-api
curl -o .skills/serphouse-api/SKILL.md https://raw.githubusercontent.com/SERPHouse/agent-skills/master/skills/api/SKILL.mdMCP (Model Context Protocol)
Every MCP tool, parameter, and input format for MCP-compatible clients.
npx skills add https://github.com/SERPHouse/agent-skills --skill serphouse-mcpManual setupoptional
mkdir -p .skills/serphouse-mcp
curl -o .skills/serphouse-mcp/SKILL.md https://raw.githubusercontent.com/SERPHouse/agent-skills/master/skills/mcp/SKILL.mdNode.js (SDK)
Full @serphouse/serphouse-nodejs SDK docs: imports, types, methods, error handling.
npx skills add https://github.com/SERPHouse/agent-skills --skill serphouse-nodejsManual setupoptional
mkdir -p .skills/serphouse-nodejs
curl -o .skills/serphouse-nodejs/SKILL.md https://raw.githubusercontent.com/SERPHouse/agent-skills/master/skills/nodejs/SKILL.mdAuthentication
Your API key must be set as an environment variable for the skills to authenticate with SERPHouse.
export SERPHOUSE_API_KEY="your_api_key"Related Links
Last updated on
How is this guide?