← WebMCP Directory

Tool tree

getwidget.dev

Developer Tools
https://getwidget.dev/
GetWidget — AI development studio for LLM apps, agents and RAG, and maker of the open-source Flutter UI kit.
Explore capabilities

Tools verified

page: Every page

open_book_audit_modalSensitive Action

Open the 'Book an audit' modal so the user can submit their workflow.

View tool JSON
{
  "name": "open_book_audit_modal",
  "kind": "transact",
  "impl": "imperative",
  "description": "Open the 'Book an audit' modal so the user can submit their workflow.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/"
}
submit_contactSensitive Action

Submit a lead to GetWidget sales (POST /api/contact). Use when the user wants to book an audit, request a pilot, or otherwise reach the team.

View tool JSON
{
  "name": "submit_contact",
  "kind": "transact",
  "impl": "imperative",
  "description": "Submit a lead to GetWidget sales (POST /api/contact). Use when the user wants to book an audit, request a pilot, or otherwise reach the team.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "email": {
        "type": "string",
        "format": "email"
      },
      "name": {
        "type": "string"
      },
      "company": {
        "type": "string"
      },
      "phone": {
        "type": "string"
      },
      "workflow": {
        "type": "string"
      }
    },
    "required": [
      "email"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
navigate_toAction

Navigate to a GetWidget page by path (e.g. /services/ai-chatbot-development/).

View tool JSON
{
  "name": "navigate_to",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate to a GetWidget page by path (e.g. /services/ai-chatbot-development/).",
  "inputSchema": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string"
      }
    },
    "required": [
      "path"
    ],
    "additionalProperties": false
  },
  "page": "/"
}