github-report-mcp
このリポジトリは、TypeScriptで構築されたGitHubレポート生成ツールです。開発者がプロジェクトの進捗や統計情報を簡単に取得できるように設計されています。機能はシンプルで、使いやすさを重視しており、チームのコミュニケーションを円滑にすることを目的としています。
GitHubスター
0
ユーザー評価
未評価
お気に入り
0
閲覧数
55
フォーク
0
イシュー
0
README
GitHub Report MCP
Prerequisites
- Node.js (latest version recommended)
- npm (comes with Node.js)
Installation & Setup
Clone the repository
git clone <repository-url> cd github-report-mcpInstall dependencies
npm installEnvironment Configuration
- Copy the example environment file:
cp .env.example .env - Open
.envfile and fill in your GitHub token:GITHUB_TOKEN=your_github_token_here
- Copy the example environment file:
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
- Go to GitHub Settings → Developer settings → Personal access tokens
- Generate a new token with appropriate repository permissions
- Copy the token and paste it in your
.envfile