Tool tree
get_articleAction
Fetch the full text and section headings of a specific tax guide or article (params: url, navigate=false) -> {title, url, headings, content_preview, content_length}
View tool JSON
{
"name": "get_article",
"kind": "act",
"impl": "imperative",
"description": "Fetch the full text and section headings of a specific tax guide or article (params: url, navigate=false) -> {title, url, headings, content_preview, content_length}",
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "URL of the guide or article to read. Defaults to the first guide."
},
"navigate": {
"type": "boolean",
"default": false,
"description": "Whether to navigate to the article page (defaults to false)"
}
}
}
}get_contact_infoAnswer
Get firm contact details, phone numbers (Israel/US), WhatsApp, email, office address, and client portal links -> {company_name, description, phone_israel, phone_us, whatsapp, email, address_us, social_links, portal_registration_url}
View tool JSON
{
"name": "get_contact_info",
"kind": "answer",
"impl": "imperative",
"description": "Get firm contact details, phone numbers (Israel/US), WhatsApp, email, office address, and client portal links -> {company_name, description, phone_israel, phone_us, whatsapp, email, address_us, social_links, portal_registration_url}",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}list_servicesAnswer
List all US tax consulting services and topic categories offered by Tax4US (params: query) -> list [{title, url}]
View tool JSON
{
"name": "list_services",
"kind": "answer",
"impl": "imperative",
"description": "List all US tax consulting services and topic categories offered by Tax4US (params: query) -> list [{title, url}]",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"default": "",
"description": "Optional search or filter term for services"
}
},
"additionalProperties": false
}
}list_tax_guidesAnswer
List all main tax service guides and topics covered on the site -> {count, guides: [{title, url}]}
View tool JSON
{
"name": "list_tax_guides",
"kind": "answer",
"impl": "imperative",
"description": "List all main tax service guides and topics covered on the site -> {count, guides: [{title, url}]}",
"inputSchema": {
"type": "object",
"properties": {}
}
}search_articlesAction
Search tax guides, forms, and articles by keyword (params: query, navigate=false) -> navigates to results or returns list of matching guides [{title, url, excerpt}]
View tool JSON
{
"name": "search_articles",
"kind": "act",
"impl": "imperative",
"description": "Search tax guides, forms, and articles by keyword (params: query, navigate=false) -> navigates to results or returns list of matching guides [{title, url, excerpt}]",
"inputSchema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search keyword or form name (e.g., '1040', 'FBAR', 'LLC')"
},
"navigate": {
"type": "boolean",
"default": false,
"description": "Whether to navigate to the search results page in the browser (defaults to false)"
}
}
}
}tax4us_list_content_by_sectionAnswer
List every published URL on this site, split by site section: the English section under /en/ and the main section at the root. This is structural only — it reads the sitemaps, which carry no text, so it cannot tell you what language a page is written in (the main section does contain some English posts). For actual content language use tax4us_search_by_language. Read-only; never navigates the page.
View tool JSON
{
"name": "tax4us_list_content_by_section",
"kind": "answer",
"impl": "imperative",
"description": "List every published URL on this site, split by site section: the English section under /en/ and the main section at the root. This is structural only — it reads the sitemaps, which carry no text, so it cannot tell you what language a page is written in (the main section does contain some English posts). For actual content language use tax4us_search_by_language. Read-only; never navigates the page.",
"inputSchema": {
"type": "object",
"properties": {
"section": {
"type": "string",
"enum": [
"he",
"en",
"any"
],
"description": "Restrict to the main section ('he'), the /en/ section ('en'), or return both ('any'). Defaults to 'any'."
},
"type": {
"type": "string",
"enum": [
"posts",
"pages",
"all"
],
"description": "Which content to list. Defaults to 'all'."
},
"limit": {
"type": "integer",
"description": "Maximum URLs to return (1-50). Defaults to 50."
}
}
}
}tax4us_search_by_languageAnswer
Search this site's tax guides and articles and filter by the language they are actually written in. This site is bilingual and the two do not line up with the URL: the Hebrew section hosts a number of English-language posts, so language is detected from the text itself. Each result also reports 'section' (which half of the site the URL sits in) separately. Use this instead of an unfiltered search when the reader has a language preference. Read-only; never navigates the page.
View tool JSON
{
"name": "tax4us_search_by_language",
"kind": "answer",
"impl": "imperative",
"description": "Search this site's tax guides and articles and filter by the language they are actually written in. This site is bilingual and the two do not line up with the URL: the Hebrew section hosts a number of English-language posts, so language is detected from the text itself. Each result also reports 'section' (which half of the site the URL sits in) separately. Use this instead of an unfiltered search when the reader has a language preference. Read-only; never navigates the page.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search keywords. Hebrew or English text both work."
},
"language": {
"type": "string",
"enum": [
"he",
"en",
"any"
],
"description": "Restrict to results written in Hebrew ('he') or English ('en'), or return both ('any'). Detected from the text, not the URL. Defaults to 'any'."
},
"limit": {
"type": "integer",
"description": "Maximum results to return (1-50). Defaults to 10."
}
},
"required": [
"query"
]
}
}