Google Super

search_patents

Search patents and prior-art literature via Google Patents.

Remote google/patents

Other tools also called search_patents? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "description": "Search query (keywords, patent number, or assignee)."
    },
    "num": {
      "type": "integer",
      "description": "Results per page (10-100)."
    },
    "page": {
      "type": "integer",
      "description": "Page number (default 1)."
    },
    "sort": {
      "enum": [
        "new",
        "old"
      ],
      "type": "string",
      "description": "'new' (newest first) or 'old' (oldest first). Default is relevance."
    },
    "type": {
      "enum": [
        "PATENT",
        "DESIGN"
      ],
      "type": "string",
      "description": "Document type. 'PATENT' (default) or 'DESIGN'."
    },
    "after": {
      "type": "string",
      "description": "Filter to documents after this date (YYYY-MM-DD or publication: filing:)."
    },
    "before": {
      "type": "string",
      "description": "Filter to documents before this date."
    },
    "status": {
      "enum": [
        "GRANT",
        "APPLICATION"
      ],
      "type": "string",
      "description": "Filter by status. 'GRANT' or 'APPLICATION'."
    },
    "country": {
      "type": "string",
      "description": "Country code filter (comma-separated, e.g. 'US,EP,JP')."
    }
  }
}