GitHub

projects_get

Get details about specific GitHub Projects resources. Use this tool to get details about individual projects, project fields, and project items by their unique IDs.

Remote github

Other tools also called projects_get? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "owner": {
      "type": "string",
      "description": "The owner (user or organization login). The name is not case sensitive."
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "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."
    },
    "method": {
      "enum": [
        "get_project",
        "get_project_field",
        "get_project_item",
        "get_project_status_update"
      ],
      "type": "string",
      "description": "The method to execute"
    },
    "item_id": {
      "type": "number",
      "description": "The item's ID. Required for 'get_project_item' method."
    },
    "field_id": {
      "type": "number",
      "description": "The field's ID. Required for 'get_project_field' method."
    },
    "owner_type": {
      "enum": [
        "user",
        "org"
      ],
      "type": "string",
      "description": "Owner type (user or org). If not provided, will be automatically detected."
    },
    "project_number": {
      "type": "number",
      "description": "The project's number."
    },
    "status_update_id": {
      "type": "string",
      "description": "The node ID of the project status update. Required for 'get_project_status_update' method."
    }
  }
}
          

Provider

GitHub →