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.
{
"mcpServers": {
"growthtalent": {
"command": "npx",
"args": ["-y", "@growthtalent/mcp"],
"env": { "GT_API_KEY": "gt_live_..." }
}
}
}~/.claude/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
| Tool | Scope | Description |
|---|---|---|
search_jobs | none | Filter 2,700+ growth marketing jobs by category, city, market, seniority, salary, remote, free-text q. Returns the standard {data, pagination, meta} envelope. |
get_job | none | Fetch a single job's full posting by slug — description, salary, apply URL, company. |
me | me:read | Authenticated user profile (candidate or company), key metadata, rate-limit remaining. |
list_my_applications | me:read | Paginated list of applications submitted via the platform. |
apply_to_job | jobs:apply | Submit an application on the authenticated candidate's behalf. Magic apply emails the company directly with cover note + profile. |
post_job | jobs:post | Companies post new roles. AI moderation runs server-side. |
search_talent | none | Search the public talent directory of growth marketers. Filter by seniority, city, tool, openToWork. Sourcing-bot territory. |
get_talent | none | Full 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.