get_by_slug_or_url
Retrieve a specific post by its slug or URL from a Markdown knowledge base. Provide the slug or URL as input to extract content quickly and accurately.
Instructions
Get a post by its slug or URL.
Args: identifier: the slug, URL, or path fragment to search for
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"title": "Identifier",
"type": "string"
}
},
"required": [
"identifier"
],
"title": "get_by_slug_or_urlArguments",
"type": "object"
}