Google Scholar Search

search_google_scholar

Search Google Scholar for academic papers and research articles. Supports filtering by author, publication year range, and returns structured results with titles, authors, abstracts, and URLs.

Remote mochow13/google-scholar-mcp

Other tools also called search_google_scholar? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query string (e.g., 'machine learning', 'neural networks')"
    },
    "author": {
      "type": "string",
      "description": "Filter results by specific author name (optional)"
    },
    "endYear": {
      "type": "number",
      "maximum": 2025,
      "minimum": 1900,
      "description": "Filter results up to this year (optional)"
    },
    "startYear": {
      "type": "number",
      "maximum": 2025,
      "minimum": 1900,
      "description": "Filter results from this year onwards (optional)"
    },
    "numResults": {
      "type": "number",
      "default": 10,
      "maximum": 20,
      "minimum": 1,
      "description": "Number of results to return (default: 10, max: 20)"
    }
  }
}