Sign In

githunt-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

githunt-mcp

MCP server for GitHunt's GitHub talent search API

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

githunt-mcp

MCP server that wraps GitHunt's REST API, giving AI assistants access to GitHunt's GitHub developer search, profile lookup, and AI profile analysis.

Prefer zero setup? GitHunt also runs a hosted MCP server at https://mcp.githunt.ai/mcp - add it as a custom connector in Claude (Settings → Connectors) or as a remote MCP server in your client and sign in with your GitHunt account. No API key or local process needed. This package is the self-hosted (stdio) alternative.

Setup

Get an API key from your GitHunt account, then run:

npx githunt-mcp

Environment variables

VariableRequiredDescription
GITHUNT_API_KEYyesYour GitHunt API key
GITHUNT_API_URLnoAPI base URL (default https://api.githunt.ai)

Claude Code

claude mcp add githunt -e GITHUNT_API_KEY=your-key-here -- npx githunt-mcp

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "githunt": {
      "command": "npx",
      "args": ["githunt-mcp"],
      "env": {
        "GITHUNT_API_KEY": "your-key-here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "githunt": {
      "command": "npx",
      "args": ["githunt-mcp"],
      "env": {
        "GITHUNT_API_KEY": "your-key-here"
      }
    }
  }
}

Tools

  • search_developers — search millions of developers available on GitHub by location, role, and skills. Supports offset (0-200) to page through results with maxResults, and returns structured content alongside the markdown table. If a location matches no known city or country, the result suggests similar supported locations instead of an empty page.
  • get_developer — get a single GitHub developer's ranked profile by username. Accepts either login or username.
  • analyze_profile — deep AI analysis of a GitHub profile (proficiency, role matches, extracted emails). Accepts either login or username.

Full API reference: https://docs.githunt.ai

Keywords

mcp

FAQs

Package last updated on 23 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts