← WebMCP Directory

Tool tree

rhino-inquisitor.com

Developer Tools
https://rhino-inquisitor.com/
A technical publication about Salesforce B2C Commerce, with searchable articles, release analysis, and migration guidance.
Explore capabilities

Tools verified

getArticleAnswer

Returns a summary of one article on rhino-inquisitor.com: its title, publication date, topic, hand-written key takeaways, opening paragraph, and the URL of its full Markdown text. Use it after searchArticles or listRecentArticles to learn what an article covers. Fetch the returned markdownUrl for the complete article.

View tool JSON
{
  "name": "getArticle",
  "kind": "answer",
  "impl": "imperative",
  "description": "Returns a summary of one article on rhino-inquisitor.com: its title, publication date, topic, hand-written key takeaways, opening paragraph, and the URL of its full Markdown text. Use it after searchArticles or listRecentArticles to learn what an article covers. Fetch the returned markdownUrl for the complete article.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "url": {
        "type": "string",
        "description": "The article's URL or path as returned by searchArticles or listRecentArticles, for example \"/cartridge-path-and-overrides/\"."
      }
    },
    "required": [
      "url"
    ]
  }
}
getSiteOverviewAnswer

Describes rhino-inquisitor.com: what it publishes, how many articles it has, the range of publication dates, the topics it covers with an article count for each, and the URLs of its machine-readable feeds. Use it first to judge whether this site covers a subject, and to get valid topic names for searchArticles.

View tool JSON
{
  "name": "getSiteOverview",
  "kind": "answer",
  "impl": "imperative",
  "description": "Describes rhino-inquisitor.com: what it publishes, how many articles it has, the range of publication dates, the topics it covers with an article count for each, and the URLs of its machine-readable feeds. Use it first to judge whether this site covers a subject, and to get valid topic names for searchArticles.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
listRecentArticlesAnswer

Lists the most recently published articles on rhino-inquisitor.com, newest first. Use it to find out what is new on the site, or to get the URL of a recent article before calling getArticle. For a subject-specific search, use searchArticles instead.

View tool JSON
{
  "name": "listRecentArticles",
  "kind": "answer",
  "impl": "imperative",
  "description": "Lists the most recently published articles on rhino-inquisitor.com, newest first. Use it to find out what is new on the site, or to get the URL of a recent article before calling getArticle. For a subject-specific search, use searchArticles instead.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 20,
        "description": "How many articles to list, newest first. Defaults to 4."
      }
    }
  }
}
searchArticlesAnswer

Searches the titles, topics and summaries of every article and reference page published on rhino-inquisitor.com, a technical blog about Salesforce B2C Commerce Cloud. Use it to find what this site has written on a subject, and to get the URL of an article before calling getArticle. Results are ranked by relevance, best match first.

View tool JSON
{
  "name": "searchArticles",
  "kind": "answer",
  "impl": "imperative",
  "description": "Searches the titles, topics and summaries of every article and reference page published on rhino-inquisitor.com, a technical blog about Salesforce B2C Commerce Cloud. Use it to find what this site has written on a subject, and to get the URL of an article before calling getArticle. Results are ranked by relevance, best match first.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Words to search for. Every word must appear in an article's title, topic, category or summary for it to match."
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 20,
        "description": "How many results to return. Defaults to 4. Fewer, better-ranked results usually serve better than many."
      },
      "topic": {
        "type": "string",
        "description": "Restrict results to one topic, using a topic name from getSiteOverview, for example \"Architecture\"."
      }
    },
    "required": [
      "query"
    ]
  }
}