← WebMCP Directory

Tool tree

Paste one line of code and your site's buttons, search, and forms become actions an AI agent can actually take. WebMCP, no server, no rewrite.
Explore capabilities

Tools verified

search_siteAnswer

Search this website for a query and submit the search form.

View tool JSON
{
  "name": "search_site",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search this website for a query and submit the search form.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "What to search for."
      }
    },
    "required": [
      "query"
    ]
  },
  "page": "/"
}
submit_formSensitive Action

Fill in and submit the “Contact” form on this page.

View tool JSON
{
  "name": "submit_form",
  "kind": "transact",
  "impl": "imperative",
  "description": "Fill in and submit the “Contact” form on this page.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "Your name (required)"
      },
      "email": {
        "type": "string",
        "description": "you@example.com (required)"
      },
      "message": {
        "type": "string",
        "description": "Message"
      }
    },
    "required": [
      "name",
      "email"
    ]
  },
  "page": "/"
}
submit_form_2Sensitive Action

Fill in and submit the “Contact us” form on this page.

View tool JSON
{
  "name": "submit_form_2",
  "kind": "transact",
  "impl": "imperative",
  "description": "Fill in and submit the “Contact us” form on this page.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "email": {
        "type": "string",
        "description": "your email (so we can reply) (required)"
      },
      "message": {
        "type": "string",
        "description": "Your message (required)"
      }
    },
    "required": [
      "email",
      "message"
    ]
  },
  "page": "/"
}
navigateAction

Go to one of this site's main pages. Available destinations: How it works, Agent's-eye view, WebMCP guide, Pricing, Analytics, GitHub.

View tool JSON
{
  "name": "navigate",
  "kind": "act",
  "impl": "imperative",
  "description": "Go to one of this site's main pages. Available destinations: How it works, Agent's-eye view, WebMCP guide, Pricing, Analytics, GitHub.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "destination": {
        "type": "string",
        "description": "The link label or URL to navigate to.",
        "enum": [
          "How it works",
          "Agent's-eye view",
          "WebMCP guide",
          "Pricing",
          "Analytics",
          "GitHub"
        ]
      }
    },
    "required": [
      "destination"
    ]
  },
  "page": "/"
}