Growth.Talent

MCP server

A stdio Model Context Protocol server. Wire it into Claude Desktop, Claude Code, or Cursor and the agent gets six native tools backed by the Growth.Talent REST API.

Install

No install step required — your agent will run the server via npx on demand.

Configure

Generate an API key first at /settings/api-keys (verified members only). Then drop one of these into your client.

~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows.

claude_desktop_config.json
{
  "mcpServers": {
    "growthtalent": {
      "command": "npx",
      "args": ["-y", "@growthtalent/mcp"],
      "env": { "GT_API_KEY": "gt_live_..." }
    }
  }
}

~/.claude/mcp_servers.json

mcp_servers.json
{
  "mcpServers": {
    "growthtalent": {
      "command": "npx",
      "args": ["-y", "@growthtalent/mcp"],
      "env": { "GT_API_KEY": "gt_live_..." }
    }
  }
}

Settings → MCP → Add Server. Same JSON shape as the other clients.

Tools exposed

ToolScopeDescription
search_jobsnoneFilter 2,700+ growth marketing jobs by category, city, market, seniority, salary, remote, free-text q. Returns the standard {data, pagination, meta} envelope.
get_jobnoneFetch a single job's full posting by slug — description, salary, apply URL, company.
meme:readAuthenticated user profile (candidate or company), key metadata, rate-limit remaining.
list_my_applicationsme:readPaginated list of applications submitted via the platform.
apply_to_jobjobs:applySubmit an application on the authenticated candidate's behalf. Magic apply emails the company directly with cover note + profile.
post_jobjobs:postCompanies post new roles. AI moderation runs server-side.
search_talentnoneSearch the public talent directory of growth marketers. Filter by seniority, city, tool, openToWork. Sourcing-bot territory.
get_talentnoneFull public profile for a single candidate by slug — bio, current title, tools, location, LinkedIn URL.

Try it in Claude

After wiring up the server and reloading the client, paste prompts like:

  • "Find me 5 Head of Growth roles in Paris with salary above 100k."
  • "Apply to the Amplitude Head of Growth posting with this cover note: …"
  • "What growth roles are open at Series A startups in remote-friendly markets?"
  • "Post a Senior Growth Engineer role for my company at $200k-$280k, hybrid, NYC."
  • "Find growth marketers in NYC who use HubSpot and are open to work — give me the top 10 with their LinkedIn."
  • "Source 5 senior CRM leads who've worked at Series-B startups for our open Lifecycle role."

The agent calls search_jobs, apply_to_job, etc. and surfaces results in chat.