Price Per TokenPrice Per Token
GitHub Fetcher

GitHub Fetcher

by vooster-ai

GitHub 11Remote
0

About

GitHub Fetcher provides direct access to file contents and directory structures from GitHub repositories, enabling code research, project exploration, and documentation tasks without requiring local clones. Key features: - Retrieve raw file content from specific paths in GitHub repositories - Browse directory trees in unix-style format for quick project structure overview - Generate enhanced directory listings with file sizes, configurable depth limits, and statistics - Filter directory contents to locate specific file types or patterns - Support for both default repository configuration and dynamic per-request repository selection

README

GitHub Fetcher MCP

[](https://www.npmjs.com/package/github-fetcher-mcp) [](https://opensource.org/licenses/MIT) [](https://nodejs.org/) [](https://www.typescriptlang.org/) [](https://github.com/choesumin/github-fetcher-mcp)

MCP (Model Context Protocol) server for fetching GitHub repository files and directory trees.

Features

  • fetch-file: Fetch raw file content from GitHub repositories
  • fetch-subdir-tree: Fetch directory tree structure in unix tree format
  • fetch-sub-tree ⭐ NEW: Enhanced directory tree with file sizes, depth limits, statistics, and filtering
  • Flexible configuration via CLI arguments or per-request parameters
  • Built with TypeScript for type safety
  • Comprehensive test coverage (79 tests)
  • Installation

    NPM

    npm install -g github-fetcher-mcp
    

    Smithery

    To install GitHub Fetcher MCP Server for any client automatically via Smithery:

    npx -y @smithery/cli@latest install github-fetcher-mcp --client 
    

    Available clients: cursor, claude, vscode, windsurf, cline, zed, etc.

    Example for Cursor:

    npx -y @smithery/cli@latest install github-fetcher-mcp --client cursor
    

    This will automatically configure the MCP server in your chosen client.

    MCP Client Integration

    GitHub Fetcher MCP can be integrated with various AI coding assistants and IDEs that support the Model Context Protocol (MCP).

    Requirements

  • Node.js >= v18.0.0
  • An MCP-compatible client (Cursor, Claude Code, VS Code, Windsurf, etc.)
  • Install in Cursor

    Go to: Settings -> Cursor Settings -> MCP -> Add new global MCP server

    Add the following configuration to your ~/.cursor/mcp.json file:

    {
      "mcpServers": {
        "github-fetcher": {
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp", "--repoIdentifier", "facebook/react/main"]
        }
      }
    }
    

    Without repoIdentifier (specify repository per request):

    {
      "mcpServers": {
        "github-fetcher": {
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp"]
        }
      }
    }
    

    Install in Claude Code

    Run this command:

    claude mcp add github-fetcher -- npx -y github-fetcher-mcp --repoIdentifier facebook/react/main
    

    Or without repoIdentifier:

    claude mcp add github-fetcher -- npx -y github-fetcher-mcp
    

    Install in VS Code

    Add this to your VS Code MCP config file. See VS Code MCP docs for more info.

    "mcp": {
      "servers": {
        "github-fetcher": {
          "type": "stdio",
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp", "--repoIdentifier", "facebook/react/main"]
        }
      }
    }
    

    Install in Windsurf

    Add this to your Windsurf MCP config file:

    {
      "mcpServers": {
        "github-fetcher": {
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp", "--repoIdentifier", "facebook/react/main"]
        }
      }
    }
    

    Install in Cline

    1. Open Cline 2. Click the hamburger menu icon (☰) to enter the MCP Servers section 3. Choose Remote Servers tab 4. Click the Edit Configuration button 5. Add github-fetcher to mcpServers:

    {
      "mcpServers": {
        "github-fetcher": {
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp", "--repoIdentifier", "facebook/react/main"]
        }
      }
    }
    

    Install in Claude Desktop

    Open Claude Desktop developer settings and edit your claude_desktop_config.json file:

    {
      "mcpServers": {
        "github-fetcher": {
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp", "--repoIdentifier", "facebook/react/main"]
        }
      }
    }
    

    Install in Zed

    Add this to your Zed settings.json:

    {
      "context_servers": {
        "github-fetcher": {
          "source": "custom",
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp", "--repoIdentifier", "facebook/react/main"]
        }
      }
    }
    

    Install in Roo Code

    Add this to your Roo Code MCP configuration file:

    {
      "mcpServers": {
        "github-fetcher": {
          "command": "npx",
          "args": ["-y", "github-fetcher-mcp", "--repoIdentifier", "facebook/react/main"]
        }
      }
    }
    

    Using with Bun

    ```json { "mcpServers": { "github-fetcher": {

    Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Linkup

    Linkup

    LinkupPlatform

    Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages

    Web & Search
    2 24
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81