GitHub

projects_list

Tools for listing GitHub Projects resources. Use this tool to list projects for a user or organization, or list project fields and items for a specific project.

Remote github

Other tools also called projects_list? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "after": {
      "type": "string",
      "description": "Forward pagination cursor from previous pageInfo.nextCursor."
    },
    "owner": {
      "type": "string",
      "description": "The owner (user or organization login). The name is not case sensitive."
    },
    "query": {
      "type": "string",
      "description": "Filter/query string. For list_projects: filter by title text and state (e.g. \"roadmap is:open\"). For list_project_items: advanced filtering using GitHub's project filtering syntax."
    },
    "before": {
      "type": "string",
      "description": "Backward pagination cursor from previous pageInfo.prevCursor (rare)."
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Field IDs to include when listing project items (e.g. [\"102589\", \"985201\"]). CRITICAL: Always provide to get field values. Without this, only titles returned. Only used for 'list_project_items' method."
    },
    "method": {
      "enum": [
        "list_projects",
        "list_project_fields",
        "list_project_items",
        "list_project_status_updates"
      ],
      "type": "string",
      "description": "The action to perform"
    },
    "per_page": {
      "type": "number",
      "description": "Results per page (max 50)"
    },
    "owner_type": {
      "enum": [
        "user",
        "org"
      ],
      "type": "string",
      "description": "Owner type (user or org). If not provided, will automatically try both."
    },
    "project_number": {
      "type": "number",
      "description": "The project's number. Required for 'list_project_fields', 'list_project_items', and 'list_project_status_updates' methods."
    }
  }
}
          

Provider

GitHub →