grokipedia

search

Search for articles in Grokipedia with optional filtering and sorting.

Remote skymoore/grokipedia-mcp

Other tools also called search? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "title": "Limit",
      "default": 12,
      "maximum": 50,
      "minimum": 1,
      "description": "Maximum number of results to return (default: 12, max: 50)"
    },
    "query": {
      "type": "string",
      "title": "Query",
      "description": "Search query string to find matching articles"
    },
    "offset": {
      "type": "integer",
      "title": "Offset",
      "default": 0,
      "minimum": 0,
      "description": "Pagination offset for results (default: 0)"
    },
    "sort_by": {
      "type": "string",
      "title": "Sort By",
      "default": "relevance",
      "description": "Sort results by 'relevance' or 'views' (default: relevance)"
    },
    "min_views": {
      "anyOf": [
        {
          "type": "integer",
          "minimum": 0
        },
        {
          "type": "null"
        }
      ],
      "title": "Min Views",
      "default": null,
      "description": "Filter to articles with at least this many views (optional)"
    }
  }
}