Tool tree
The Leading Multi-Agent Platform
fetch_blog_postsanswer
Load recent blog posts from this site’s public JSON API (`GET /api/blog-posts`).
View tool JSON
{
"name": "fetch_blog_posts",
"kind": "answer",
"impl": "imperative",
"description": "Load recent blog posts from this site’s public JSON API (`GET /api/blog-posts`).",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "number",
"minimum": 1,
"maximum": 24
},
"skip": {
"type": "number",
"minimum": 0
}
}
}
}fetch_page_markdownanswer
Fetch a machine-readable markdown representation of a page when the site supports it (sends Accept: text/markdown).
View tool JSON
{
"name": "fetch_page_markdown",
"kind": "answer",
"impl": "imperative",
"description": "Fetch a machine-readable markdown representation of a page when the site supports it (sends Accept: text/markdown).",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Path such as /, /blog, or /about"
}
},
"required": [
"path"
]
}
}