Skip to main content

get_reputation

Retrieve company reputation data including ratings, review counts, and insights from Glassdoor and Indeed. Credits: 2.0 (light mode) or 3.0 (deep mode with AI extraction)

Parameters

ParameterTypeRequiredDescription
company_namesarrayYesCompany names to look up
outputstringNoOutput format: json (default) or markdown
modestringNolight (default, fast) or deep (full scrape + AI extraction)
countrystringNoCountry filter

Limits by Mode

ModeMax Companies per Call
light15
deep5

Request

curl -X POST https://mcp.debytes.io/mcp \
  -H "Authorization: Bearer deb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "get_reputation",
      "arguments": {
        "company_names": ["Google", "Meta", "Amazon"],
        "mode": "light"
      }
    }
  }'

Response (JSON mode)

{
  "Google": {
    "rating": 4.3,
    "review_count": 12500,
    "insights": [
      "Great work-life balance",
      "Competitive compensation",
      "Bureaucratic decision-making"
    ]
  },
  "Meta": {
    "rating": 4.1,
    "review_count": 8900,
    "insights": [
      "Fast-paced environment",
      "Good benefits",
      "High expectations"
    ]
  }
}

Response Fields

FieldTypeDescription
ratingnumberAverage rating (1-5 scale)
review_countnumberTotal number of reviews
insightsarrayKey themes from reviews

Modes

Light Mode (default)

  • Fast lookup using search snippets
  • Up to 15 companies per call
  • 2.0 credits

Deep Mode

  • Full page scrape with AI-powered insight extraction
  • Richer, more detailed insights
  • Up to 5 companies per call
  • 3.0 credits (2.0 base + 1.0 AI surcharge)

Notes

  • Fresh data is fetched if existing records are older than 90 days
  • Results may be cached for faster response and lower credit cost
  • New reputation data is persisted for future lookups