Sitejabber Mcp Server avatar

Sitejabber Mcp Server

Pricing

from $2.00 / 1,000 tool calls

Go to Apify Store
Sitejabber Mcp Server

Sitejabber Mcp Server

MCP server for AI agents to query Sitejabber reviews, ratings, and company profiles. Three tools: get_reviews with star/sort/verified filters, get_company_profile for trust data, browse_category for industry discovery. Connect from Claude Desktop, ChatGPT, Cursor, or any MCP-compatible client.

Pricing

from $2.00 / 1,000 tool calls

Rating

0.0

(0)

Developer

zadexinho

zadexinho

Maintained by Community

Actor stats

1

Bookmarked

1

Total users

0

Monthly active users

a day ago

Last modified

Share

Sitejabber MCP Server

MCP server that gives AI agents access to Sitejabber reviews, company profiles, and category data. Three tools: get_reviews returns reviews with text, ratings, verified status, business replies, and reviewer info. get_company_profile returns overall rating, review count, and categories. browse_category finds companies in a Sitejabber category. Connect from Claude Desktop, ChatGPT, Cursor, or any MCP-compatible client.

Available tools

ToolWhat it returns
get_reviewsReview text, star rating, verified status, business reply, reviewer name and location, helpful votes. Filter by stars or verified-only. Up to 100 reviews per call.
get_company_profileCompany name, domain, overall rating, total review count, categories, profile URL.
browse_categoryCompanies in a Sitejabber category with names, domains, ratings, and profile URLs. Up to 100 companies per call.

How to connect

Claude Desktop / Cursor / Windsurf

Add to your MCP settings:

{
"mcpServers": {
"sitejabber": {
"type": "url",
"url": "https://zadexinho--sitejabber-mcp-server.apify.actor/mcp",
"headers": {
"Authorization": "Bearer YOUR_APIFY_TOKEN"
}
}
}
}

Via Apify MCP gateway

{
"mcpServers": {
"apify": {
"type": "url",
"url": "https://mcp.apify.com?tools=zadexinho/sitejabber-mcp-server",
"headers": {
"Authorization": "Bearer YOUR_APIFY_TOKEN"
}
}
}
}

Python (OpenAI Agents SDK)

from agents.mcp import MCPServerStreamableHttp
async with MCPServerStreamableHttp(
name="Sitejabber",
params={
"url": "https://zadexinho--sitejabber-mcp-server.apify.actor/mcp",
"headers": {"Authorization": "Bearer YOUR_APIFY_TOKEN"},
},
) as server:
tools = await server.list_tools()
# → get_reviews, get_company_profile, browse_category

Tool reference

get_reviews

Get reviews for a company with optional filters.

ParameterTypeDefaultDescription
companystringrequiredCompany domain (e.g., "amazon.com") or Sitejabber URL
max_reviewsinteger20Number of reviews to return (1-100)
sortstring"most_recent"Sort: "most_recent", "highest_rated", "lowest_rated", "most_helpful"
starsstringallComma-separated star ratings (e.g., "1,2" for negative)
verified_onlybooleanfalseOnly return verified reviews

get_company_profile

Get a company's Sitejabber profile summary.

ParameterTypeDescription
companystringCompany domain (e.g., "amazon.com") or Sitejabber URL

Returns: name, domain, overallRating, totalReviews, categories, profileUrl, website.

browse_category

Find companies listed in a Sitejabber category.

ParameterTypeDefaultDescription
category_urlstringrequiredCategory URL or slug (e.g., "web-hosting-services")
max_companiesinteger20Number of companies to return (1-100)

How much does it cost?

You are charged $0.005 per tool call. Each call fetches data and returns structured results.

ItemCost
Per tool call$0.005
Per 1,000 calls$5.00

Example: Checking reviews for 50 companies costs $0.25.

Use cases

  • Ask your AI assistant to summarize recent reviews for a competitor.
  • Monitor customer sentiment by querying negative or low-star reviews.
  • Compare review ratings across companies in a Sitejabber category.
  • Build AI workflows that flag new verified negative reviews.
  • Feed review data into analysis pipelines without writing scraping code.
  • Research business reputation during due diligence.
  • Track review trends across your competitive landscape.

FAQ

How fast are tool responses?

Most calls return in 2-5 seconds. Requesting more reviews (up to 100) takes longer due to pagination.

Do I need a Sitejabber account?

No. All data is publicly available on Sitejabber.

What's the difference between this and the Sitejabber Scraper?

The scraper is for batch jobs — thousands of reviews across many companies, exported as datasets. This MCP server is for real-time AI agent queries — focused results returned directly to your agent.

Can I use this with ChatGPT?

Yes. Any MCP-compatible client works. Configure the server URL and your Apify API token.

What if a company isn't on Sitejabber?

The tool returns an error message. Your agent can handle it and try another platform.