MentorHoodMCP

Find mentors from any AI agent or assistant. Add this server to Claude, Cursor, or any MCP-compatible client to search MentorHood mentors directly in your workflow.

Endpoint

https://mcp.mentorhood.com/mcp

Add to Claude Code

# In ~/.claude.json or project .mcp.json
{
  "mcpServers": {
    "mentorhood": {
      "url": "https://mcp.mentorhood.com/mcp",
      "type": "http"
    }
  }
}

Tools

search_mentors

Search mentors by keyword, expertise, or language.

Parameters

querystringFree-text across name, role, bio, expertise, goals
expertisestring[]Filter by expertise tags, e.g. ['React', 'TypeScript']
languagestringFilter by spoken language, e.g. 'Spanish'
limitnumberMax results, default 10, max 20

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "search_mentors",
    "arguments": {
      "query": "product manager startup",
      "language": "Spanish",
      "limit": 5
    }
  }
}
get_mentor_profile

Get the full profile of a mentor — bio, services, booking links.

Parameters

slugrequiredstringMentor URL slug from search_mentors results

Example

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "get_mentor_profile",
    "arguments": {
      "slug": "juan-perez"
    }
  }
}