← GitHub Kanban MCP Server

GitHub Kanban MCP Server 0.3.0

npm · @sunwood-ai-labs/github-kanban-mcp-server · current release

4
Tools
0
Resources
0
Templates
0
Prompts

Observation

Observed 2026-08-17T20:38:02.188Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.

Server capabilities
{
  "tools": {}
}

Tools 4

ToolCategoryAnnotationsRisk
add_commentタスクにコメントを追加
Input schema
{
  "type": "object",
  "properties": {
    "repo": {
      "type": "string",
      "description": "GitHubリポジトリ名"
    },
    "issue_number": {
      "type": "string",
      "description": "タスク(Issue)のID"
    },
    "body": {
      "type": "string",
      "description": "コメントの内容(Markdown形式対応)"
    },
    "state": {
      "type": "string",
      "enum": [
        "open",
        "closed"
      ],
      "description": "コメント時に変更するissueの状態(オプション)"
    }
  },
  "required": [
    "repo",
    "issue_number",
    "body"
  ]
}
— · —
create_issue新しいissueを作成します
Input schema
{
  "type": "object",
  "properties": {
    "repo": {
      "type": "string",
      "description": "GitHubリポジトリ名"
    },
    "title": {
      "type": "string",
      "description": "issueのタイトル"
    },
    "emoji": {
      "type": "string",
      "description": "タイトルの先頭に付与するユニークな絵文字"
    },
    "body": {
      "type": "string",
      "description": "issueの本文(## の先頭には絵文字を付与して可読性を上げて)"
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "issueのラベル"
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "アサインするユーザー"
    }
  },
  "required": [
    "repo",
    "title"
  ]
}
— · —
list_issuesカンバンボードのissue一覧を取得します
Input schema
{
  "type": "object",
  "properties": {
    "repo": {
      "type": "string",
      "description": "GitHubリポジトリ名"
    },
    "state": {
      "type": "string",
      "enum": [
        "open",
        "closed",
        "all"
      ],
      "description": "issueの状態"
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "フィルタリングするラベル"
    }
  },
  "required": [
    "repo"
  ]
}
— · —
update_issue既存のissueを更新します
Input schema
{
  "type": "object",
  "properties": {
    "repo": {
      "type": "string",
      "description": "GitHubリポジトリ名"
    },
    "issue_number": {
      "type": "number",
      "description": "issue番号"
    },
    "title": {
      "type": "string",
      "description": "新しいタイトル"
    },
    "emoji": {
      "type": "string",
      "description": "タイトルの先頭に付与する絵文字"
    },
    "body": {
      "type": "string",
      "description": "新しい本文"
    },
    "state": {
      "type": "string",
      "enum": [
        "open",
        "closed"
      ],
      "description": "新しい状態"
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "新しいラベル"
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "新しいアサイン"
    }
  },
  "required": [
    "repo",
    "issue_number"
  ]
}
— · —

Resources 0

Resource templates 0

Prompts 0

Let’s talk about MCP security.

Share your details and our security team will contact you.