← WebMCP Directory

Tool tree

Check if Google Gemini AI is down or experiencing issues. Real-time status updates for Gemini AI assistant.
Explore capabilities
llmbase.models.searchanswer

Search the public LLMBase model catalog by slug, name, or provider.

View tool JSON
{
  "name": "llmbase.models.search",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search the public LLMBase model catalog by slug, name, or provider.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string"
      },
      "limit": {
        "type": "number",
        "minimum": 1,
        "maximum": 20
      }
    },
    "required": [
      "query"
    ]
  },
  "page": "/"
}
llmbase.leaderboard.getanswer

Fetch a public leaderboard slice from the LLMBase website API.

View tool JSON
{
  "name": "llmbase.leaderboard.get",
  "kind": "answer",
  "impl": "imperative",
  "description": "Fetch a public leaderboard slice from the LLMBase website API.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "sort": {
        "type": "string"
      },
      "limit": {
        "type": "number",
        "minimum": 1,
        "maximum": 50
      }
    }
  },
  "page": "/"
}
llmbase.docs.lookupanswer

Return the most relevant public LLMBase documentation pages for a query.

View tool JSON
{
  "name": "llmbase.docs.lookup",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return the most relevant public LLMBase documentation pages for a query.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string"
      },
      "limit": {
        "type": "number",
        "minimum": 1,
        "maximum": 10
      }
    },
    "required": [
      "query"
    ]
  },
  "page": "/"
}
llmbase.pricing.getanswer

Return the public LLMBase pricing pages grouped by family.

View tool JSON
{
  "name": "llmbase.pricing.get",
  "kind": "answer",
  "impl": "imperative",
  "description": "Return the public LLMBase pricing pages grouped by family.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "family": {
        "type": "string",
        "enum": [
          "all",
          "chat",
          "inference",
          "openclaw"
        ]
      }
    }
  },
  "page": "/"
}