Tool tree
LegalZoom has step-by-step tools and attorney guidance for your business and personal legal needs.
check_business_name_availabilityAnswer
Check whether a proposed business name is available for an entity type in a US state.
View tool JSON
{
"name": "check_business_name_availability",
"kind": "answer",
"impl": "imperative",
"description": "Check whether a proposed business name is available for an entity type in a US state.",
"inputSchema": {
"type": "object",
"properties": {
"entity_name": {
"type": "string",
"description": "Proposed business name."
},
"state_code": {
"type": "string",
"pattern": "^[A-Za-z]{2}$",
"description": "Two-letter US state code."
},
"entity_type": {
"type": "string",
"enum": [
"LLC",
"Corporation"
],
"default": "LLC"
}
},
"required": [
"entity_name",
"state_code"
],
"additionalProperties": false
}
}get_legal_document_templateAnswer
Get one LegalZoom legal document template and its normalized question schema by exact slug.
View tool JSON
{
"name": "get_legal_document_template",
"kind": "answer",
"impl": "imperative",
"description": "Get one LegalZoom legal document template and its normalized question schema by exact slug.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Exact template slug from template search."
}
},
"required": [
"slug"
],
"additionalProperties": false
}
}get_legalzoom_ai_capabilityAnswer
Get the schema, documentation, annotations, and integration availability for one exact LegalZoom MCP tool name.
View tool JSON
{
"name": "get_legalzoom_ai_capability",
"kind": "answer",
"impl": "imperative",
"description": "Get the schema, documentation, annotations, and integration availability for one exact LegalZoom MCP tool name.",
"inputSchema": {
"type": "object",
"properties": {
"tool_name": {
"type": "string",
"description": "Exact MCP tool name, such as search-legalzoom-articles."
}
},
"required": [
"tool_name"
],
"additionalProperties": false
}
}list_legalzoom_ai_capabilitiesAnswer
List every published LegalZoom MCP capability, its taxonomy, schemas, supported integrations, and documentation URLs.
View tool JSON
{
"name": "list_legalzoom_ai_capabilities",
"kind": "answer",
"impl": "imperative",
"description": "List every published LegalZoom MCP capability, its taxonomy, schemas, supported integrations, and documentation URLs.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}search_legal_document_templatesAnswer
Search the LegalZoom legal document template catalog by a word or phrase.
View tool JSON
{
"name": "search_legal_document_templates",
"kind": "answer",
"impl": "imperative",
"description": "Search the LegalZoom legal document template catalog by a word or phrase.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Words describing the needed legal document."
},
"attorney_drafted": {
"type": "boolean",
"description": "When set, include only templates matching this attorney-drafted status."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"default": 10
}
},
"required": [
"query"
],
"additionalProperties": false
}
}suggest_domain_namesAnswer
Suggest available domain-name candidates for a business or brand idea.
View tool JSON
{
"name": "suggest_domain_names",
"kind": "answer",
"impl": "imperative",
"description": "Suggest available domain-name candidates for a business or brand idea.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Business or brand idea."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"default": 6
}
},
"required": [
"query"
],
"additionalProperties": false
}
}