Skip to main content
Glama
hetaoBackend

mcp-github-trending

by hetaoBackend

mcp-github-trending MCP 服务器

MCP 服务器通过简单的 API 接口提供对 GitHub 趋势存储库和开发人员数据的访问。

铁匠徽章

特征

  • 访问 GitHub 热门存储库和开发人员数据

  • 按编程语言过滤

  • 按时间段过滤(每日、每周、每月)

  • 按口语过滤

  • 返回格式良好的 JSON 响应

Related MCP server: ossinsight-mcp

工具

该服务器实现了以下工具:

获取 github 趋势存储库

使用以下参数从 GitHub 获取热门存储库:

  • language (可选):用于过滤存储库的编程语言(例如“python”,“javascript”)

  • since (可选):筛选仓库的时间段(“每日”、“每周”、“每月”)。默认为“每日”。

  • spoken_language (可选):用于筛选存储库的口语

响应示例:

[
  {
    "name": "repository-name",
    "fullname": "owner/repository-name",
    "url": "https://github.com/owner/repository-name",
    "description": "Repository description",
    "language": "Python",
    "stars": 1000,
    "forks": 100,
    "current_period_stars": 50
  }
]

获取 github 趋势开发者

使用以下参数从 GitHub 获取热门开发人员:

  • language (可选):要过滤的编程语言(例如“python”,“javascript”)

  • since (可选):过滤的时间段(“每日”、“每周”、“每月”)。默认为“每日”

响应示例:

[
  {
    "username": "developer",
    "name": "Developer Name",
    "url": "https://github.com/developer",
    "avatar": "https://avatars.githubusercontent.com/u/123456",
    "repo": {
      "name": "repository-name",
      "description": "Repository description",
      "url": "https://github.com/developer/repository-name"
    }
  }
]

安装

先决条件

  • Python 3.12

安装步骤

安装软件包:

pip install mcp-github-trending

Claude桌面配置

在 MacOS 上:

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

在 Windows 上:

%APPDATA%/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-github-trending": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/mcp-github-trending",
        "run",
        "mcp-github-trending"
      ]
    }
  }
}
{
  "mcpServers": {
    "mcp-github-trending": {
      "command": "uvx",
      "args": [
        "mcp-github-trending"
      ]
    }
  }
}

发展

构建和发布

  1. 同步依赖项并更新锁文件:

uv sync
  1. 构建软件包分发版:

uv build
  1. 发布到 PyPI:

uv publish

注意:通过环境变量或命令标志设置 PyPI 凭据:

  • 令牌: --tokenUV_PUBLISH_TOKEN

  • 用户名/密码: --username / UV_PUBLISH_USERNAME--password / UV_PUBLISH_PASSWORD

调试

为了获得最佳调试体验,请使用MCP Inspector

通过npm启动 MCP 检查器:

npx @modelcontextprotocol/inspector uv --directory /path/to/mcp-github-trending run mcp-github-trending

检查器将显示一个 URL,您可以在浏览器中访问该 URL 以开始调试。

执照

该项目根据 MIT 许可证获得许可 - 有关详细信息,请参阅LICENSE文件。

Available Tools

2 tools

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv1.0.0
    • First observedget_github_trending_developers
    • First observedget_github_trending_repositories

TDQS

B3.2/5.0
Disambiguation5/5

The two tools have perfectly distinct purposes: one targets trending developers, the other trending repositories. There is no overlap in functionality, and an agent can easily differentiate between them based on the clear resource distinction.

Naming Consistency5/5

Both tools follow an identical verb_noun pattern with 'get_github_trending_' prefix, ensuring complete predictability. The naming is highly consistent and readable, with no deviations in style or structure.

Tool Count2/5

With only 2 tools, the server feels thin for its apparent scope of 'github-trending'. While it covers two key resources, the lack of filtering, sorting, or time-range options limits utility, making the count borderline insufficient for robust trending analysis.

Completeness3/5

The server provides basic access to trending developers and repositories, but there are notable gaps. Missing operations include filtering by language, location, or time period, and there is no way to get historical trending data or detailed analytics, which are common needs in this domain.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hetaoBackend/mcp-github-trending'

If you have feedback or need assistance with the MCP directory API, please join our Discord server