Y

yonyon.ai

Yonatan Gross's personal site, building AI in public. WebMCP tools let an agent browse his portfolio projects, ask about his work, read site pages, and grab a link to book an intro call.

1read
3action
https://yonyon.ai/

live · Personal & Media · JSON · API for agents

Tools 4 tools

browse_projectsaction

List Yonatan Gross's portfolio projects with descriptions and links.

View tool JSON
{
  "name": "browse_projects",
  "kind": "action",
  "impl": "imperative",
  "description": "List Yonatan Gross's portfolio projects with descriptions and links.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/"
}
book_intro_callaction

Get the booking link for a free 15-minute intro call with Yonatan Gross.

View tool JSON
{
  "name": "book_intro_call",
  "kind": "action",
  "impl": "imperative",
  "description": "Get the booking link for a free 15-minute intro call with Yonatan Gross.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  },
  "page": "/"
}
ask_yonatanaction

Ask a question about Yonatan Gross's work, projects, services, or experience. Returns a grounded answer.

View tool JSON
{
  "name": "ask_yonatan",
  "kind": "action",
  "impl": "imperative",
  "description": "Ask a question about Yonatan Gross's work, projects, services, or experience. Returns a grounded answer.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "question": {
        "type": "string",
        "description": "The question to ask."
      }
    },
    "required": [
      "question"
    ],
    "additionalProperties": false
  },
  "page": "/"
}
read_site_pageread

Read a yonyon.ai content page as markdown: home, developers, llms-full, or auth.

View tool JSON
{
  "name": "read_site_page",
  "kind": "read",
  "impl": "imperative",
  "description": "Read a yonyon.ai content page as markdown: home, developers, llms-full, or auth.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "page": {
        "type": "string",
        "enum": [
          "home",
          "developers",
          "llms-full",
          "auth"
        ],
        "description": "Which page to read."
      }
    },
    "required": [
      "page"
    ],
    "additionalProperties": false
  },
  "page": "/"
}