← WebMCP Directory

Tool tree

thoughtfulrobots.ai

AI & Agents
https://thoughtfulrobots.ai/
AI consulting that helps organizations identify opportunities, prototype, and implement AI systems.
Explore capabilities

Tools verified

go_toAction

Navigate this tab to another page on thoughtfulrobots.ai — for example /our-services, /work, /whitepapers or /about — and report what loaded. Internal paths only.

View tool JSON
{
  "name": "go_to",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate this tab to another page on thoughtfulrobots.ai — for example /our-services, /work, /whitepapers or /about — and report what loaded. Internal paths only.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string",
        "description": "A site path beginning with \"/\", e.g. \"/our-services\"."
      }
    },
    "required": [
      "path"
    ]
  }
}
read_pageAnswer

What the visitor is looking at right now: the page URL, title, description, visible headings and text, the internal links go_to can follow, and whether the contact form is open. Read this before answering a question about the site; follow a link with go_to when the answer is on another page.

View tool JSON
{
  "name": "read_page",
  "kind": "answer",
  "impl": "imperative",
  "description": "What the visitor is looking at right now: the page URL, title, description, visible headings and text, the internal links go_to can follow, and whether the contact form is open. Read this before answering a question about the site; follow a link with go_to when the answer is on another page.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
talk_to_usAction

Open the contact form on this page and pre-fill it. Use when the visitor wants to contact Thoughtful Robots, get in touch, enquire, or start a conversation. Fills the fields and stops — it never sends. The visitor reviews the form and presses send themselves.

View tool JSON
{
  "name": "talk_to_us",
  "kind": "act",
  "impl": "imperative",
  "description": "Open the contact form on this page and pre-fill it. Use when the visitor wants to contact Thoughtful Robots, get in touch, enquire, or start a conversation. Fills the fields and stops — it never sends. The visitor reviews the form and presses send themselves.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "The visitor's name."
      },
      "email": {
        "type": "string",
        "description": "An email address for the reply."
      },
      "organization": {
        "type": "string",
        "description": "Company or organisation, if any."
      },
      "message": {
        "type": "string",
        "description": "What they want to discuss."
      }
    }
  }
}