首页
学习
活动
专区
圈层
工具
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
首页
学习
活动
专区
圈层
工具
MCP广场
MCP广场 >详情页
Gitingest-MCP2025-05-260分享
github
用于 gitingest 的 MCP 服务器。它允许 Claude Desktop、Cursor、Cline 等 MCP 客户端快速提取关于 Github 仓库的信息,包括仓库摘要、项目目录结构、文件内容等。
By puravparab
2025-05-260
github
详情内容

Gitingest-MCP smithery徽章

这是为gitingest设计的MCP服务器。它允许Claude Desktop、Cline、Cursor等MCP客户端快速提取GitHub仓库信息,包括:

  • 仓库摘要
  • 项目目录结构
  • 文件内容
Gitingest-MCP MCP服务器

https://github.com/user-attachments/assets/c1fa596b-a70b-4d37-91d9-ea5e80284793

目录

安装

通过Smithery安装

  • 要通过Smithery安装gitingest-mcp:

    npx -y @smithery/cli@latest install @puravparab/gitingest-mcp --client claude --config "{}" # Claude
    
    npx -y @smithery/cli@latest run @puravparab/gitingest-mcp --client cursor --config "{}" # Cursor
    
    npx -y @smithery/cli@latest install @puravparab/gitingest-mcp --client windsurf --config "{}" # Windsurf
    
    npx -y @smithery/cli@latest install @puravparab/gitingest-mcp --client cline --config "{}" # Cline
    

通过GitHub安装

  1. 将以下内容添加到MCP客户端配置文件中

    {
    	"mcpServers": {
    		"gitingest-mcp": {
    			"command": "<uv路径>/uvx",
    			"args": [
    				"--from",
    				"git+https://github.com/puravparab/gitingest-mcp",
    				"gitingest-mcp"
    			]
    		}
    	}
    }
    

手动安装仓库

  1. 克隆仓库

    git clone https://https://github.com/puravparab/Gitingest-MCP
    cd Gitingest-MCP
    
  2. 安装依赖

    uv sync
    
  3. 将以下内容添加到MCP客户端配置文件中

    {
    	"mcpServers": {
    		"gitingest": {
    			"command": "<uv路径>/uv",
    			"args": [
    				"run",
    				"--with",
    				"mcp[cli]",
    				"--with-editable",
    				"<gitingest-mcp项目路径>/gitingest_mcp",
    				"mcp",
    				"run",
    				"<gitingest-mcp项目路径>/gitingest-mcp/src/gitingest_mcp/server.py"
    			]
    		}
    	}
    }
    
  4. 如果遇到问题,请参考此MCP服务器文档

更新MCP客户端配置

  1. 添加到Claude Desktop

    在IDE中打开配置文件

    cursor ~/Library/Application\ Support/Claude/claude_desktop_config.json
    
    code ~/Library/Application\ Support/Claude/claude_desktop_config.json
    

调试

  1. 使用mcp检查器
    uv run mcp dev src/gitingest_mcp/server.py
    
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档