We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/github/github-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
projects_get.snap•1.75 KiB
{
"annotations": {
"readOnlyHint": true,
"title": "Get details of GitHub Projects resources"
},
"description": "Get details about specific GitHub Projects resources.\nUse this tool to get details about individual projects, project fields, and project items by their unique IDs.\n",
"inputSchema": {
"properties": {
"field_id": {
"description": "The field's ID. Required for 'get_project_field' method.",
"type": "number"
},
"fields": {
"description": "Specific list of field IDs to include in the response when getting a project item (e.g. [\"102589\", \"985201\", \"169875\"]). If not provided, only the title field is included. Only used for 'get_project_item' method.",
"items": {
"type": "string"
},
"type": "array"
},
"item_id": {
"description": "The item's ID. Required for 'get_project_item' method.",
"type": "number"
},
"method": {
"description": "The method to execute",
"enum": [
"get_project",
"get_project_field",
"get_project_item"
],
"type": "string"
},
"owner": {
"description": "The owner (user or organization login). The name is not case sensitive.",
"type": "string"
},
"owner_type": {
"description": "Owner type (user or org). If not provided, will be automatically detected.",
"enum": [
"user",
"org"
],
"type": "string"
},
"project_number": {
"description": "The project's number.",
"type": "number"
}
},
"required": [
"method",
"owner",
"project_number"
],
"type": "object"
},
"name": "projects_get"
}