Labsco
Pearch-ai logo

Xiaohongshu XHS RedNote Social Media Data Assistant MCP

from Pearch-ai

Read-only Xiaohongshu / XHS / RedNote MCP for note search, note details, paginated comments, creator profiles, and creator note lists.

🔥🔥FreeQuick setup

Pearch.ai MCP

MCP server for Pearch.AI: natural-language search over people and companies/leads (B2B). Use it from Cursor, Claude Desktop, VS Code, or any MCP-compatible client.

Evaluating AI Recruitment Sourcing Tools by Human Preference

Features

  • search_people — natural-language search for people (e.g. “software engineers in California with 5+ years Python”); returns candidates with optional insights and profile scoring.
  • search_company_leads — find companies and leads/contacts within them (B2B); e.g. “AI startups in SF, 50–200 employees” + “CTOs and engineering managers”.
  • Test key by default — works out of the box with test_mcp_key (masked/sample results); set your own key for full results.

API key

Use test_mcp_key for masked (sample) results — no sign-up required.

For full, unmasked results, get an API key from the Pearch.ai Dashboard and set it as PEARCH_API_KEY in your MCP config (see Installation below).

Tools

ToolDescription
search_peopleNatural-language search for people or follow-up on a thread. Example: "software engineers in California with 5+ years Python", "senior ML researchers in Berlin".
search_company_leadsFind companies and leads/contacts (B2B). Example: company "AI startups in SF, 50–200 employees" + leads "CTOs and engineering managers".

Base URL: PEARCH_API_URL or per-call base_url (default https://api.pearch.ai).

Remote HTTP (Kubernetes / Cursor URL)

The server exposes Streamable HTTP at /mcp when run with Uvicorn:

export PEARCH_API_URL='https://api.pearch.ai'   # optional
uvicorn pearch_mcp:app --host 0.0.0.0 --port 8000

Health: GET /health or /healthcheck.

Remote access uses the same Pearch API key as api.pearch.ai (Authorization: Bearer). The server validates keys via GET /v1/user. Demo key test_mcp_key is also accepted (masked results).

Cursor ~/.cursor/mcp.json:

{
  "mcpServers": {
    "Pearch.ai": {
      "url": "https://mcp.pearch.ai/mcp",
      "headers": {
        "Authorization": "Bearer ${env:PEARCH_API_KEY}"
      }
    }
  }
}

Development

export PEARCH_API_KEY='test_mcp_key'   # or your key for full results
fastmcp dev inspector pearch_mcp.py

Support