live · Developer Tools · JSON · API for agents
Search Render documentation by keyword.
{
"name": "render.docs.search",
"kind": "read",
"impl": "imperative",
"description": "Search Render documentation by keyword.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Keywords to search for in the Render docs."
}
},
"required": [
"query"
],
"additionalProperties": false
}
}Fetch a Render docs page as markdown by slug.
{
"name": "render.docs.get-markdown",
"kind": "read",
"impl": "imperative",
"description": "Fetch a Render docs page as markdown by slug.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Docs page slug without a leading slash. Nested slugs are allowed."
}
},
"required": [
"slug"
],
"additionalProperties": false
}
}Fetch the Render llms.txt index as markdown.
{
"name": "render.llms.get-index",
"kind": "read",
"impl": "imperative",
"description": "Fetch the Render llms.txt index as markdown.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}Fetch the latest Render blog index as markdown (most recent 20 posts).
{
"name": "render.blog.get-index",
"kind": "read",
"impl": "imperative",
"description": "Fetch the latest Render blog index as markdown (most recent 20 posts).",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}Fetch the latest Render articles index as markdown (most recent 50 articles).
{
"name": "render.articles.get-index",
"kind": "read",
"impl": "imperative",
"description": "Fetch the latest Render articles index as markdown (most recent 50 articles).",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}