Tool tree
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.
browse_projectsAction
List Yonatan Gross's portfolio projects with descriptions and links.
View tool JSON
{
"name": "browse_projects",
"kind": "act",
"impl": "imperative",
"description": "List Yonatan Gross's portfolio projects with descriptions and links.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}book_intro_callSensitive Action
Get the booking link for a free 15-minute intro call with Yonatan Gross.
View tool JSON
{
"name": "book_intro_call",
"kind": "transact",
"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": "act",
"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_pageAnswer
Read a yonyon.ai content page as markdown: home, developers, llms-full, or auth.
View tool JSON
{
"name": "read_site_page",
"kind": "answer",
"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": "/"
}