get_project_v2
Retrieve detailed GitHub project V2 data using GraphQL API by providing the project's node ID. Integrates with GitHub MCP Server for enhanced project management.
Instructions
Get details of a GitHub project V2 using GraphQL API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The node ID of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The node ID of the project",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}