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
export const addCommentSchema = {
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'],
};