Skip to main content
Glama

GitHub Kanban MCP Server

types.ts786 B
export interface IssueArgs { path: string; // Gitリポジトリの絶対パス state?: 'open' | 'closed' | 'all'; labels?: string[]; } export interface CreateIssueArgs { path: string; // Gitリポジトリの絶対パス title: string; emoji?: string; body?: string; labels?: string[]; assignees?: string[]; } export interface UpdateIssueArgs { path: string; // Gitリポジトリの絶対パス issue_number: number; title?: string; emoji?: string; body?: string; state?: 'open' | 'closed'; labels?: string[]; assignees?: string[]; } export interface RepoArgs { path: string; // Gitリポジトリの絶対パス } export interface ToolResponse { content: { type: string; text: string; }[]; _meta?: Record<string, unknown>; }

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/Sunwood-ai-labs/github-kanban-mcp-server'

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