← WebMCP Directory

Tool tree

nz365guy.com

liveMedia & Personal
https://nz365guy.com/
Mark Smith is a Principal AI Strategist, Microsoft MVP, and co-author of Microsoft 365 Copilot Adoption. Writing about Artificial Intelligence, Agents, Microsoft AI, and the Intelligence Age.
Explore capabilities

page: /

subscribe_blog_notificationsSensitive Action

Fill in the email form to be notified when new blog posts are published. The user must review and click the button to confirm.

View tool JSON
{
  "name": "subscribe_blog_notifications",
  "kind": "transact",
  "impl": "declarative",
  "description": "Fill in the email form to be notified when new blog posts are published. The user must review and click the button to confirm.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "website": {
        "type": "string"
      },
      "email": {
        "type": "string",
        "description": "[email protected]"
      }
    },
    "required": [
      "email"
    ]
  },
  "page": "/"
}
subscribe_newsletterSensitive Action

Fill in the email newsletter signup form. The user must review the email address and click the button to confirm the subscription.

View tool JSON
{
  "name": "subscribe_newsletter",
  "kind": "transact",
  "impl": "declarative",
  "description": "Fill in the email newsletter signup form. The user must review the email address and click the button to confirm the subscription.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "website": {
        "type": "string"
      },
      "email": {
        "type": "string",
        "description": "[email protected]"
      }
    },
    "required": [
      "email"
    ]
  },
  "page": "/"
}

page: /podcast

get_site_infoAnswer

Get an overview of nz365guy.com: who Mark Smith is, what the site covers, and its key pages with URLs. Returns JSON.

View tool JSON
{
  "name": "get_site_info",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get an overview of nz365guy.com: who Mark Smith is, what the site covers, and its key pages with URLs. Returns JSON.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/podcast"
}
list_postsAnswer

List the most recent published blog posts on nz365guy.com, newest first, optionally filtered by category. Returns title, date, category, excerpt, and URL as JSON.

View tool JSON
{
  "name": "list_posts",
  "kind": "answer",
  "impl": "imperative",
  "description": "List the most recent published blog posts on nz365guy.com, newest first, optionally filtered by category. Returns title, date, category, excerpt, and URL as JSON.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "number",
        "description": "Maximum number of posts to return (1-50, default 10)."
      },
      "category": {
        "type": "string",
        "description": "Optional category name to filter by (case-insensitive)."
      }
    }
  },
  "page": "/podcast"
}
search_postsAnswer

Search published blog posts on nz365guy.com by keyword across title, category, tags, and excerpt. Returns the best matches as JSON with URLs.

View tool JSON
{
  "name": "search_posts",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search published blog posts on nz365guy.com by keyword across title, category, tags, and excerpt. Returns the best matches as JSON with URLs.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Keywords to search for."
      },
      "limit": {
        "type": "number",
        "description": "Maximum number of results (1-50, default 5)."
      }
    },
    "required": [
      "query"
    ]
  },
  "page": "/podcast"
}