Tool tree
Identity governance, access security, and compliance software
get_contentAnswer
Fetch one document from Pathlock as markdown, by its bundle path.
View tool JSON
{
"name": "get_content",
"kind": "answer",
"impl": "imperative",
"description": "Fetch one document from Pathlock as markdown, by its bundle path.",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Bundle path such as posts/hello-world.md, from a search result."
}
},
"required": [
"path"
]
}
}list_sectionsAnswer
List the sections of content available on Pathlock.
View tool JSON
{
"name": "list_sections",
"kind": "answer",
"impl": "imperative",
"description": "List the sections of content available on Pathlock.",
"inputSchema": {
"type": "object",
"properties": {}
}
}search_contentAnswer
Search the content of Pathlock and return matching documents.
View tool JSON
{
"name": "search_content",
"kind": "answer",
"impl": "imperative",
"description": "Search the content of Pathlock and return matching documents.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Words to search for."
}
},
"required": [
"query"
]
}
}