R

render.com

Cloud platform for hosting web services, databases, and static sites. Its WebMCP tools let an agent search Render's documentation and fetch the docs, llms.txt, blog, and articles indexes as markdown.

5read
https://render.com/

live · Developer Tools · JSON · API for agents

Tools 5 tools

render.docs.searchread

Search Render documentation by keyword.

View tool JSON
{
  "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
  }
}
render.docs.get-markdownread

Fetch a Render docs page as markdown by slug.

View tool JSON
{
  "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
  }
}
render.llms.get-indexread

Fetch the Render llms.txt index as markdown.

View tool JSON
{
  "name": "render.llms.get-index",
  "kind": "read",
  "impl": "imperative",
  "description": "Fetch the Render llms.txt index as markdown.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  }
}
render.blog.get-indexread

Fetch the latest Render blog index as markdown (most recent 20 posts).

View tool JSON
{
  "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
  }
}
render.articles.get-indexread

Fetch the latest Render articles index as markdown (most recent 50 articles).

View tool JSON
{
  "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
  }
}