.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/carolinacherry/github-talent-mcp
home/mcp-servers/carolinacherry/github-talent-mcp
carolinacherry avatar

github-talent-mcp

bycarolinacherry· 1 MCP server

Stars

4

Forks

1

Category

Sales & Outreach

View on GitHub

TL;DR

MCP server for searching, scoring, and ranking GitHub developers for technical recruiting

How to install github-talent-mcp?

carolinacherry/github-talent-mcp
$git clone https://github.com/carolinacherry/github-talent-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install github-talent-mcp by running `git clone https://github.com/carolinacherry/github-talent-mcp`, then use it for the current task and follow its documentation at https://github.com/carolinacherry/github-talent-mcp.

Files · 1

View on GitHub
README.md
1# github-talent-mcp
2 
3[![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
4[![Python 3.14+](https://img.shields.io/badge/Python-3.14+-blue.svg)](https://www.python.org)
5[![MCP](https://img.shields.io/badge/MCP-Model_Context_Protocol-8A2BE2)](https://modelcontextprotocol.io)
6[![Claude](https://img.shields.io/badge/Built_for-Claude_by_Anthropic-d4a373)](https://claude.ai)
7[![GitHub Copilot](https://img.shields.io/badge/Works_with-GitHub_Copilot-8957E5?logo=githubcopilot&logoColor=white)](https://github.com/features/copilot)
8[![GitHub API](https://img.shields.io/badge/GitHub-REST_API_v3-181717?logo=github)](https://docs.github.com/en/rest)
9 
10MCP server that searches, scores, and ranks GitHub developers for technical recruiting.
11 
12Works with **Claude** (Code & Desktop) and **GitHub Copilot** (CLI & desktop app) — any MCP client that speaks stdio.
13 
14## Demo
15 
16https://github.com/user-attachments/assets/b2dbe9e0-26ee-4849-861a-4b5cb268facc
17 
18Sourcing candidates for a real Anthropic JD, live in Claude Cowork.
19 
20https://github.com/user-attachments/assets/2dfd82b4-3eb5-4f2b-bc0a-2580b95043e4
21 
22### Profile deep dive
23 
24> Get the full developer profile and activity score for torvalds on GitHub
25 
26Claude calls `get_developer_profile("torvalds")` and returns:
27 
28| Field | Value |
29|---|---|
30| **Activity Score** | **150** (reputation floor applied) |
31| Location | Portland, OR |
32| Followers | 293,321 |
33| Stars Received | 235,068 |
34| Primary Language | C (98.1%) |
35| Commits (90d) | 0 |
36| PRs (90d) | 0 |
37| Notable Repos | linux (183K stars), libdc-for-dirk, subsurface-for-dirk, uemacs, pesern-resolve |
38| Profile README | No |
39| Hireable | No |
40 
41Torvalds has zero recent GitHub activity because kernel development flows through mailing lists, not GitHub PRs. The **reputation floor** (293K followers) overrides the behavioral score and sets it to 150.
42 
43### Repo contributor ranking
44 
45> Get the top contributors to huggingface/transformers and rank them for a founding ML engineer role at an AI startup
46 
47Claude calls `get_repo_contributors("huggingface/transformers")` → `rank_candidates` on the top 24 contributors:
48 
49| Rank | Developer | Combined Score | Activity | Relevance | Strengths |
50|---|---|---|---|---|---|
51| 1 | stas00 | 83.4 | 150 | 72 | 4,553 stars, contributes to major OSS, MIT-licensed repos |
52| 2 | cyyever | 80.8 | 120 | 64 | 1,217 followers, active contributor, profile README |
53| 3 | Cyrilvallez | 77.2 | 120 | 56 | Active: 13 commits + 57 PRs in 90 days, strong OSS presence |
54| 4 | ArthurZucker | 74.4 | 120 | 48 | 37 PRs in 90 days, contributes to huggingface/transformers |
55| 5 | ydshieh | 72.0 | 120 | 40 | Active: 9 commits + 40 PRs in 90 days |
56 
57Combined score = activity × 0.4 + relevance × 0.6. Relevance is keyword overlap with the job description (ML, AI, startup, engineer, etc.).
58 
59## Installation
60 
61### 1. Clone and install
62 
63```bash
64git clone https://github.com/carolinacherry/github-talent-mcp.git
65cd github-talent-mcp
66python3 -m venv .venv && source .venv/bin/activate
67pip install -e .
68```
69 
70### 2. Create a GitHub personal access token
71 
72Go to [github.com/settings/tokens](https://github.com/settings/tokens) and create a **fine-grained** or **classic** token with these scopes:
73 
74| Scope | Why |
75|---|---|
76| `read:user` | Read user profiles and search users |
77| `public_repo` | Read public repo data, languages, contributors |
78 
79Create a `.env` file in the project root:
80 
81```
82GITHUB_TOKEN=ghp_xxxxxxxxxxxx
83```
84 
85### 3. Connect to Claude
86 
87#### Claude Code (CLI)
88 
89One command:
90 
91```bash
92claude mcp add github-talent -- /path/to/github-talent-mcp/.venv/bin/python3 -m github_talent_mcp
93```
94 
95Then set the token as an environment variable. Either:
96- Export it in your shell: `export GITHUB_TOKEN=ghp_xxxxxxxxxxxx`
97- Or keep it in the `.env` file — the server reads it via `python-dotenv` on startup
98 
99Restart Claude Code to pick up the new server. Verify with `/mcp` — you should see 9 tools under `github-talent`.
100 
101#### Claude Desktop
102 
103Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
104 
105```json
106{
107 "mcpServers": {
108 "github-talent": {
109 "command": "/path/to/github-talent-mcp/.venv/bin/python3",
110 "args": ["-m", "github_talent_mcp"],
111 "cwd": "/path/to/github-talent-mcp",
112 "env": {
113 "GITHUB_TOKEN": "ghp_xxxxxxxxxxxx"
114 }
115 }
116 }
117}
118```
119 
120Restart Claude Desktop. The tools will appear in the toolbox icon.
121 
122#### GitHub Copilot (CLI & desktop app)
123 
124The [GitHub Copilot CLI](https://docs.github.com/en/copilot/how-tos/copilot-cli) and the [GitHub Copilot app](https://github.com/features/ai/github-app) share one MCP config, so a single setup covers both.
125 
126Add it to `~/.copilot/mcp-config.json` (global), or commit a `.copilot/mcp-config.json` in your repo — the Copilot app picks that up automatically:
127 
128```json
129{
130 "mcpServers": {
131 "github-talent": {
132 "type": "local",
133 "command": "uvx",
134 "args": ["github-talent-mcp"],
135 "env": {
136 "GITHUB_TOKEN": "${GITHUB

Preview

carolinacherry/github-talent-mcpcarolinacherry/github-talent-mcp
Repocarolinacherry/github-talent-mcp
TypeMCP Servers
CategorySales & Outreach
UpdatedJun 2026
LicenseApache-2.0
First seenJul 26, 2026

Tags

MCP

Related

6 picks
Type
  1. stickerdaniel avatarlinkedin-mcp-serverMCP server that gives AI assistants like Claude access to LinkedIn profiles, companies, and job postings through the user's own browser session.MCP ServersJul 202647k2.9k
  2. tsmztech avatarmcp-server-salesforceA Salesforce connector MCP Server.MCP ServersJul 20266.5k164
  3. willdent avatarpipedrive-mcp-serverModel Context Protocol server for Pipedrive API integrationMCP ServersJul 20265.1k58
  4. can4hou6joeng4 avatarboss-agent-cliAI Agent 专用的 BOSS 直聘求职 CLI 工具MCP ServersJul 20262.6k1.5k
  5. yosefhayim avatarebay-mcpModel Context Protocol (MCP) server that exposes 100% of eBay's Sell APIs (322 tools across 270 endpoints) to AI assistants like Claude, Cursor, and Cline, covering inventory, order fulfillment, marketing, analytics, and developer tools with OAuth authentication and…MCP ServersJul 20262.2k107
  6. linked-api avatarlinkedapi-mcpMCP server that lets AI assistants control LinkedIn accounts and retrieve real-time data.MCP ServersJul 20261.9k63