github-report-mcp

このリポジトリは、TypeScriptで構築されたGitHubレポート生成ツールです。開発者がプロジェクトの進捗や統計情報を簡単に取得できるように設計されています。機能はシンプルで、使いやすさを重視しており、チームのコミュニケーションを円滑にすることを目的としています。

GitHubスター

0

ユーザー評価

未評価

お気に入り

0

閲覧数

59

フォーク

0

イシュー

0

README
GitHub Report MCP
Prerequisites
  • Node.js (latest version recommended)
  • npm (comes with Node.js)
Installation & Setup
  1. Clone the repository

    git clone <repository-url>
    cd github-report-mcp
    
  2. Install dependencies

    npm install
    
  3. Environment Configuration

    • Copy the example environment file:
      cp .env.example .env
      
    • Open .env file and fill in your GitHub token:
      GITHUB_TOKEN=your_github_token_here
      
  4. Compile the code

    npm run build
    
MCP Client Configuration

After compilation, reference the built file in your MCP client:

For Claude Desktop

Add to your Claude configuration file:

{
  "mcpServers": {
    "github-report": {
      "command": "node",
      "args": ["path/to/your/built/file.js"]
    }
  }
}
For VS Code

Configure the MCP extension to point to your compiled output file.

Getting a GitHub Token
  1. Go to GitHub Settings → Developer settings → Personal access tokens
  2. Generate a new token with appropriate repository permissions
  3. Copy the token and paste it in your .env file