![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@sunwood-ai-labs/github-kanban-mcp-server
Advanced tools
A Model Context Protocol server for managing GitHub issues as Kanban using gh CLI
GitHub Kanban MCP Serverは、GitHubのissueをカンバンボード形式で管理し、LLMのタスク管理を効率化するためのModel Context Protocol(MCP)サーバーです。
kanban-server/
├── src/ # ソースコードディレクトリ
│ ├── handlers/ # リクエストハンドラー
│ │ ├── comment-handlers.ts # コメント関連の処理
│ │ ├── issue-handlers.ts # Issue関連の処理
│ │ ├── label-handlers.ts # ラベル関連の処理
│ │ └── tool-handlers.ts # ツールリクエストの処理
│ ├── schemas/ # 入力スキーマ定義
│ │ ├── comment-schemas.ts # コメント関連のスキーマ
│ │ └── issue-schemas.ts # Issue関連のスキーマ
│ ├── utils/ # ユーティリティ関数
│ │ ├── error-handler.ts # エラー処理
│ │ └── exec.ts # コマンド実行関連
│ ├── server.ts # MCPサーバーの実装
│ └── types.ts # 型定義
├── docs/ # ドキュメント
│ └── v0.2.0/ # バージョン別ドキュメント
└── assets/ # アセットファイル
# パッケージのインストール
npm install @sunwood-ai-labs/github-kanban-mcp-server
# GitHub CLIの認証設定
gh auth login
MCPの設定ファイルに以下を追加:
{
"mcpServers": {
"github-kanban": {
"command": "github-kanban-mcp-server"
}
}
}
カンバンボードのissue一覧を取得します。
入力パラメータ:
repo
: GitHubリポジトリ名(必須)state
: issueの状態('open', 'closed', 'all')labels
: フィルタリングするラベルの配列新しいissueを作成します。
入力パラメータ:
repo
: GitHubリポジトリ名(必須)title
: issueのタイトル(必須)emoji
: タイトルの先頭に付与する絵文字body
: issueの本文labels
: ラベルの配列assignees
: アサインするユーザーの配列既存のissueを更新します。
入力パラメータ:
repo
: GitHubリポジトリ名(必須)issue_number
: issue番号(必須)title
: 新しいタイトルemoji
: タイトルの先頭に付与する絵文字body
: 新しい本文state
: 新しい状態('open', 'closed')labels
: 新しいラベルの配列assignees
: 新しいアサインの配列タスクにコメントを追加します。
入力パラメータ:
repo
: GitHubリポジトリ名(必須)issue_number
: タスク(Issue)のID(必須)body
: コメントの内容(Markdown形式対応)(必須)state
: コメント時に変更するissueの状態('open', 'closed')MIT License - LICENSEファイルを参照してください。
git checkout -b feature/amazing-feature
)git commit -m '✨ feat: 素晴らしい機能を追加'
)git push origin feature/amazing-feature
)問題や提案がありましたら、Issueを作成してください。
FAQs
A Model Context Protocol server for managing GitHub issues as Kanban using gh CLI
The npm package @sunwood-ai-labs/github-kanban-mcp-server receives a total of 2 weekly downloads. As such, @sunwood-ai-labs/github-kanban-mcp-server popularity was classified as not popular.
We found that @sunwood-ai-labs/github-kanban-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.