🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

serenn-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serenn-mcp-server

MCP server for searching verified field service technicians on Serenn

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

serenn-mcp-server

MCP server that lets Claude find verified field-service technicians via Serenn's search API.

What it does

Exposes a single tool — search_technicians — that searches serenn.ai for appliance repair, HVAC, and plumbing professionals by location, trade, brand, and appliance type. Every result includes verified job counts, specialties, and contact info.

Install in Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "serenn": {
      "command": "npx",
      "args": ["-y", "serenn-mcp-server"]
    }
  }
}

Restart Claude Desktop. You'll see "serenn" in the MCP tools list.

Install in Claude Code

claude mcp add serenn -- npx -y serenn-mcp-server

Try it

Ask Claude:

"Find someone to fix my Samsung refrigerator in Austin, TX"

Claude will call the search_technicians tool and return verified technicians with contact info.

Tool schema

ParameterRequiredExample
locationYes"Austin, TX"
tradeNo"Appliance Repair"
brandNo"Samsung"
typeNo"Refrigerator"

Development

cd packages/mcp-server
npm install
npm run build
node dist/index.js  # runs on stdio

How it works

The server is a thin stdio wrapper around GET https://serenn.ai/api/ai/search. No API key needed — the endpoint is public. Results are cached at the CDN layer for 5 minutes.

Keywords

mcp

FAQs

Package last updated on 15 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts