get_by_tag
Retrieve blog content by specific tag with customizable results limit using the 'get_by_tag' tool on the Library MCP server. Streamline content discovery in Markdown knowledge bases.
Instructions
Get blog content by its tag.
Args: tag: the tag associated with content limit: the number of results to include
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
tag | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"tag": {
"title": "Tag",
"type": "string"
}
},
"required": [
"tag"
],
"title": "get_by_tagArguments",
"type": "object"
}