BrokerIA Imoveis
Server Details
Search Brazilian real estate, simulate financing, qualify leads, schedule visits.
- Status
- Healthy
- Uptime
- 100.0% over 40 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-03-26
- URL
- Repository
- raklapimenta/brokeria-mcp-server
- GitHub Stars
- 0
TDQS
Scored across 8 tools
Each tool addresses a distinct step in the real estate journey: financial pre-qualification, property search, proximity search, detail viewing, comparison, visit scheduling, payment estimation, and neighborhood analytics. No two tools have overlapping responsibilities; even the two estimation tools focus on different questions (affordable price vs. monthly payment).
Most tools follow a verb_noun pattern like buscar_imoveis and agendar_visita, but others are noun-based (detalhes_imovel, info_bairro) and one mixes English with Portuguese (capacidade_pre_search). The consistent 'brokeria' prefix mitigates this, but the varied structures and language mixing are noticeable.
At 8 tools, the set is appropriately scoped for a real estate assistant, covering both discovery (search, nearby) and action (scheduling) without redundancy. Each tool has a clear role, and there is no excess or obvious bloat.
The tool set delivers a complete workflow: budgeting (capacidade_pre_search), searching (buscar_imoveis/imoveis_proximos), evaluating (detalhes_imovel/comparar_imoveis), contextualizing (info_bairro), and acting (agendar_visita). It also covers financing education with estimar_parcela_educacional. Missing features like listing purchases or broker contact are out of scope for a buyer-facing assistant.
Available Tools
8 toolsbrokeria_agendar_visitaRequest a property visitAInspect
Registra uma SOLICITACAO de visita a um imovel. Requer id do imovel, nome do visitante, telefone ou email, data preferida e periodo (manha/tarde/noite). A solicitacao e enviada pra imobiliaria responsavel, que entra em contato pra confirmar. Nao confirma visita nem reserva horario por conta propria.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Observacoes opcionais | |
| contact | Yes | Pelo menos um meio de contato obrigatorio (phone ou email) | |
| property_id | Yes | UUID do imovel (retornado pela busca) | |
| visitor_name | Yes | Nome completo do visitante | |
| preferred_date | Yes | Data preferida YYYY-MM-DD | |
| preferred_period | Yes | Periodo do dia |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=false and openWorldHint=true, and the description adds crucial behavioral details: the request is sent to the agency and does NOT confirm or book anything on its own. This goes beyond the annotations by explaining the real-world flow and limitation, which is valuable for correct invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the primary action, and every sentence adds value: purpose, required fields, and behavioral limitation. No redundant filler or off-topic content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 6 parameters, nested contact object, and no output schema, the description adequately explains the process, required inputs, and post-submission behavior. It could have mentioned what the response returns, but the absence of an output schema makes that less critical. The description is sufficiently complete for an action-oriented tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema fully documents parameters and the enum. The description recaps the required fields ('Requer id do imovel, nome do visitante, telefone ou email, data preferida e periodo') but adds no new semantic detail beyond the schema. Baseline 3 applies because the schema handles the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Registra uma SOLICITACAO de visita a um imovel' (registers a visit request to a property), using a specific verb and resource. It distinguishes from sibling search/info tools by emphasizing the request action, and the caveat 'Nao confirma visita nem reserva horario por conta propria' clarifies its scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly defines when to use the tool (to register a visit request) and states the required inputs. It does not explicitly mention alternatives or exclusions, but siblings are all read-only search tools, making the use case clear. The mention that the agency contacts to confirm further guides user expectations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brokeria_buscar_imoveisSearch Brazilian real estate listingsARead-onlyInspect
Busca imoveis residenciais no catalogo de imobiliarias parceiras da BrokerIA no Brasil. Filtra por cidade, bairro, tipo (casa, apartamento, terreno), faixa de preco, quartos, vagas e area. Retorna lista com foto, endereco aproximado, preco anunciado e id pra consulta de detalhes.
| Name | Required | Description | Default |
|---|---|---|---|
| tipo | No | ||
| limit | No | ||
| bairro | No | Bairro | |
| cidade | No | Cidade. Ex: "Campinas" | |
| offset | No | ||
| area_min | No | Area minima em m2 | |
| descricao | Yes | Descricao em linguagem natural do imovel desejado | |
| vagas_min | No | Minimo de vagas | |
| valor_max | No | Valor maximo em reais | |
| valor_min | No | Valor minimo em reais | |
| finalidade | No | Modalidade comercial: venda, locacao ou ambos. Permuta e condicao da venda. | |
| imobiliaria | No | Slug da imobiliaria. Ex: "kasamais" | |
| quartos_max | No | Maximo de quartos | |
| quartos_min | No | Minimo de quartos |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only and non-destructive intent, lowering the bar. Description adds that results include photo, approximate address, price, and ID, plus the list-return behavior. Does not discuss pagination or response structure, but adds meaningful context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core action, filters, and return fields. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 14 parameters, no output schema, and a required natural-language parameter, a short list of filters is insufficient. It does not explain pagination, the role of 'descricao', or the non-residential types allowed in the schema. The description is adequate for a simple filter tool but not for this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 79%, but description omits the required 'descricao' parameter entirely and fails to mention other params like finalidade, imobiliaria, limit/offset. Although it lists common filters, it does not clarify that the search is driven by a natural-language description, which is essential. The description also omits enum options beyond casa/apartamento/terreno.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it searches residential real estate listings from partner agencies in Brazil. It lists filters and return fields, distinguishing it from sibling tools like detalhes_imovel (details) by specifying it returns a list with IDs for detail lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage for property search with filters, but does not explicitly state when to prefer this over sibling tools like imoveis_proximos or comparar_imoveis. No exclusions or alternative recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brokeria_capacidade_pre_searchEstimate purchasing capacity (educational, pre-search)ARead-onlyInspect
Estima um intervalo educacional de valor de imovel que poderia caber na renda mensal informada (criterio de comprometimento medio publico ~30%). NAO e uma cotacao, NAO e uma pre-aprovacao, NAO consulta seu historico de credito, NAO determina aprovacao. Opcionalmente conta quantos imoveis do catalogo BrokerIA cabem no intervalo na cidade informada. Use ANTES de buscar imoveis para ajudar o usuario a definir uma faixa de preco realista.
| Name | Required | Description | Default |
|---|---|---|---|
| idade | Yes | ||
| cidade | No | Cidade de interesse (opcional). Se informada, conta quantos imoveis do catalogo cabem no intervalo. | |
| dependentes | No | ||
| entrada_brl | Yes | Entrada disponivel em reais | |
| tipo_imovel | No | novo | |
| valor_fgts_brl | No | ||
| primeiro_imovel | Yes | ||
| renda_familiar_brl | Yes | Renda familiar mensal em reais (max R$ 100 mil) | |
| fgts_acima_36_meses | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only and non-destructive; the description adds meaningful context: the estimate is educational only, does not check credit history, does not determine approval, and optionally counts catalog matches. This goes beyond the annotation hints without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences front-load the primary function, followed by clear limitations and usage guidance. Every sentence is informative and there is no redundant text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, timing, limitations, and optional behavior, and the output shape is implied as an interval and a count. Without an output schema, a bit more detail on return format could help, but it is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 33%, and the description only indirectly references income and city, leaving parameters like idade, dependentes, tipo_imovel, FGTS values, and primeiro_imovel unexplained. It does not compensate for the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool estimates an educational property-value range based on monthly income, using a specific verb and resource. It distinguishes itself from siblings by explicitly stating it is not a quote or pre-approval and is intended for pre-search use.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly directs use 'ANTES de buscar imoveis' and lists exclusions (not a quote, not pre-approval), but does not name alternative sibling tools. This provides clear when-to-use context with some exclusions, though not full alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brokeria_comparar_imoveisCompare properties side by sideARead-onlyInspect
Compara de 2 a 4 imoveis lado a lado a partir dos ids retornados pelas buscas. Monta uma tabela com preco anunciado, area, quartos, vagas, bairro, imobiliaria responsavel e preco por metro quadrado. Util pra visualizar trade-offs objetivos. Nao indica qual e o "melhor" — a decisao e do usuario.
| Name | Required | Description | Default |
|---|---|---|---|
| imovel_ids | Yes | Lista de 2 a 4 UUIDs de imoveis retornados pela busca |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false; the description adds behavioral details by explaining it builds a table with specific columns and does not rank or judge. This is consistent with annotations and gives context about the tool's output and limitations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three concise sentences: the first defines the action and constraint, the second lists the output content, and the third explains the use case and limitation. No redundant words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with one parameter and no output schema, the description is fully complete. It explains what the tool does, what the table contains, and its purpose, so the agent knows what to expect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides full coverage for the single parameter, including min/max. The description adds meaning by reinforcing the 2-4 item limit and clarifying the IDs come from previous searches, which is not in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool compares 2 to 4 properties side-by-side from IDs returned by searches, and lists the specific comparison fields (price, area, bedrooms, etc.). This makes it distinct from siblings like 'brokeria_buscar_imoveis' and 'brokeria_detalhes_imovel'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It specifies this tool is used after a search ('a partir dos ids retornados pelas buscas') and for visualizing objective trade-offs. It also notes it does not indicate which property is best, implying the agent should not delegate decisions to the tool, though it doesn't explicitly name alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brokeria_detalhes_imovelGet details of a specific propertyARead-onlyInspect
Retorna os detalhes publicos de um imovel especifico pelo id retornado por uma busca. Inclui fotos, descricao, caracteristicas (quartos, suites, vagas, area), endereco aproximado, preco anunciado e imobiliaria responsavel. Nao calcula financiamento nem avalia elegibilidade em programa de credito.
| Name | Required | Description | Default |
|---|---|---|---|
| imovel_id | Yes | UUID do imovel |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this as read-only and non-destructive. The description adds that the address is approximate, which is a behavioral caveat beyond annotations, and clarifies it does not compute financing or eligibility. This adds useful context without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences: the first states the core action, the second lists contents and exclusions. It is concise, front-loaded, and contains no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With one simple parameter and no output schema, the description lists the expected return fields and clearly states limitations. It gives enough context for the agent to use the tool correctly and set expectations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers the parameter fully with 'UUID do imovel' at 100% coverage. The description adds that the ID comes from a search result, providing provenance that helps the agent understand where to obtain the value. This goes beyond schema-only info.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns public details for a specific property using the ID from a search, and lists the included fields (photos, description, features, approximate address, price, agency). This distinguishes it from sibling tools like buscar_imoveis or comparar_imoveis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it by saying 'pelo id retornado por uma busca', indicating a prior search step. It also explicitly states what it does not do (calculate financing or assess credit eligibility), providing a when-not. However, it does not name alternative tools directly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brokeria_estimar_parcela_educacionalEducational monthly payment range estimatorARead-onlyInspect
Apresenta uma estimativa educacional, em intervalo (minimo e maximo), do valor de parcela mensal de referencia pra um imovel residencial no Brasil, calculada a partir de parametros medios publicos (taxa de juros media divulgada, prazo informado, entrada informada). Nao e cotacao, nao e pre-aprovacao, nao consulta bureau de credito, nao classifica em programa habitacional. NAO substitui analise de correspondente bancario autorizado pelo Banco Central do Brasil. [EN] Educational reference range (min-max) for a monthly real estate payment in Brazil, based on public average parameters. Not a quote, not a pre-approval, no credit bureau check. Does NOT substitute analysis by a Bacen-authorized banking correspondent.
| Name | Required | Description | Default |
|---|---|---|---|
| idade | Yes | Idade do proponente principal | |
| cidade | No | ||
| estado | No | SP | |
| dependentes | No | ||
| entrada_brl | No | ||
| prazo_meses | No | ||
| tipo_imovel | No | novo | |
| valor_fgts_brl | No | Valor de FGTS a usar (em reais, nao boolean) | |
| primeiro_imovel | Yes | Se e o primeiro imovel da familia | |
| valor_imovel_brl | Yes | Valor do imovel em reais (max R$ 5 milhoes) | |
| renda_familiar_brl | Yes | Renda familiar mensal em reais (max R$ 100 mil) | |
| fgts_acima_36_meses | No | ||
| sistema_amortizacao | No | sac | |
| modalidade_indexador | No | tr_plus |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the readOnlyHint annotation by explaining the estimate is based on public average parameters (interest rate, term, down payment) and explicitly states limitations: 'NAO substitui analise de correspondente bancario autorizado pelo Banco Central do Brasil'. This adds behavioral context about what the tool does not do, which is not present in annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the main purpose and then lists limitations. It includes both Portuguese and English versions, which is redundant but not excessively verbose. The structure is clear, though the EN summary repeats the same content, adding length without new information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 14 parameters and no output schema, the description is only partially complete. It explains the output is a min-max range but does not specify the return format, units, or how parameters influence the calculation. It also does not address edge cases or required parameter semantics. The educational and non-binding context is useful, but more detail on output and parameter interactions is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With schema description coverage at only 36%, the description needs to compensate, but it only mentions 'taxa de juros media divulgada, prazo informado, entrada informada'. It does not explain the many other parameters like cidade, estado, dependentes, tipo_imovel, sistema_amortizacao, or modalidade_indexador. The description adds minimal meaning beyond the schema, leaving most parameters underspecified.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Apresenta uma estimativa educacional, em intervalo (minimo e maximo), do valor de parcela mensal de referencia pra um imovel residencial no Brasil'. This specifies the verb (apresenta), the resource (monthly payment range for a residential property), and the scope (Brazil). It also distinguishes from sibling tools by clarifying it is an estimator, not a search/scheduling tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear when-not-to-use guidance: 'Nao e cotacao, nao e pre-aprovacao, nao consulta bureau de credito, nao classifica em programa habitacional'. This tells the agent this tool is only for educational estimates, not for actual quotes or pre-approvals. However, it does not explicitly name alternative tools to use instead, so it lacks a full 'use X instead' instruction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brokeria_imoveis_proximosFind properties near a locationARead-onlyInspect
Lista imoveis proximos a um endereco, CEP ou coordenada geografica de referencia. Retorna ate 20 imoveis ordenados por distancia em linha reta, com foto, preco anunciado, caracteristicas basicas e distancia em km. Util pra usuarios que priorizam morar perto de um local especifico (trabalho, escola).
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Latitude (opcional, alternativa a referencia) | |
| lng | No | Longitude (opcional, alternativa a referencia) | |
| limit | No | ||
| raio_km | No | Raio de busca em km (padrao 5) | |
| referencia | No | Endereco, CEP, nome de bairro ou ponto de referencia (ex: "Av Paulista 1578", "13084-060") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is covered. The description goes beyond by disclosing the return limit (up to 20), ordering by straight-line distance, and included fields (photo, price, basic characteristics, distance in km). This adds valuable behavioral context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences that cover purpose, output details, and a use case. There is no redundancy or filler, and it is front-loaded with the primary action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only tool with 5 optional parameters and no output schema, the description is quite complete: it specifies the result count, ordering, and key returned fields. It does not mention pagination or error handling, but those are not critical for this simple use case. The sibling context is not explicitly addressed, but the purpose is clear enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (80%), so the schema already documents most parameters. The description mentions 'endereco, CEP ou coordenada geografica' which maps to 'referencia' and lat/lng, and 'ate 20' which implies the limit parameter, but it does not add substantial new meaning beyond the schema. Baseline of 3 is appropriate since the schema carries the weight.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists properties near an address, CEP, or geographic coordinates, with a specific verb ('Lista') and resource. It distinguishes itself from the sibling 'brokeria_buscar_imoveis' by emphasizing proximity to a specific location, making the purpose specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear use context: 'Util pra usuarios que priorizam morar perto de um local especifico (trabalho, escola).' This implies when to use it (location-based search) but does not explicitly name alternatives or exclusions. It lacks a direct comparison to sibling tools, but the context is clear enough for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brokeria_info_bairroGet neighborhood / city stats from the partner catalogARead-onlyInspect
Retorna estatisticas agregadas do catalogo de imobiliarias parceiras da BrokerIA para uma cidade (ou cidade+bairro): total de imoveis disponiveis, precos em percentis (25/50/75), distribuicao por tipo e por numero de quartos, quantidade de imobiliarias parceiras atuantes na regiao. Util pra orientar o usuario sobre faixa de preco tipica e oferta antes de uma busca.
| Name | Required | Description | Default |
|---|---|---|---|
| bairro | No | Nome do bairro (opcional). Se omitido, retorna stats da cidade inteira. | |
| cidade | Yes | Nome da cidade (ex: "Joao Pessoa") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
As annotations já declaram readOnlyHint=true e destructiveHint=false, e a descrição é consistente com uma operação de leitura. Ela acrescenta a fonte de dados (catalogo de parceiras) e o tipo de agregação, mas não revela possíveis limitações como autenticação, rate limits ou atualização dos dados. Como as annotations cobrem o perfil de segurança, a descrição entrega valor moderado.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Uma frase densa e informativa, que começa com o verbo principal e lista métricas e uso. Não há palavras redundantes, embora seja longa e poderia ser dividida em duas frases para maior legibilidade. A estrutura é aceitável para a complexidade do conteúdo.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
A descrição detalha o conteúdo do retorno (total, percentis, distribuição por tipo e quartos, nº de imobiliárias) e a motivação de uso, suficiente para um tool sem output schema. Não menciona formato de resposta, mas isso não é essencial para uma ferramenta de estatísticas.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
O schema cobre 100% dos parâmetros, com descrições detalhadas: 'cidade' inclui exemplo e 'bairro' é opcional explicando que a omissão retorna stats da cidade inteira. A descrição da tool apenas repete a ideia de cidade ou cidade+bairro, sem acrescentar nova semântica além do schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
A descrição especifica o verbo 'Retorna', o recurso (catalogo de imobiliarias parceiras da BrokerIA) e o escopo (cidade ou cidade+bairro), listando estatísticas concretas como total de imóveis, percentis e distribuições. Diferencia-se claramente de ferramentas irmãs como brokeria_buscar_imoveis ao focar em dados agregados em vez de listagens de imóveis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Indica explicitamente quando usar: 'Util pra orientar o usuario sobre faixa de preco tipica e oferta antes de uma busca'. Não menciona quando não usar nem alternativas, mas o contexto de uso pré-busca é claro e suficiente para diferenciar de outras ferramentas.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
- Changed
brokeria_buscar_imoveis2 fields changed- changed
Input schema / properties / finalidade / descriptionPrevious value: -"BrokerIA opera apenas venda (sem aluguel)."New value: +"Modalidade comercial: venda, locacao ou ambos. Permuta e condicao da venda." - changed
Input schema / properties / finalidade / enumPrevious value: -[ - "venda" -]New value: +[ + "venda", + "locacao", + "ambos" +]
1 tool update
- Changed
brokeria_buscar_imoveis2 fields changed- added
Input schema / properties / finalidade / descriptionAdded value: +"BrokerIA opera apenas venda (sem aluguel)." - changed
Input schema / properties / finalidade / enumPrevious value: -[ - "venda", - "aluguel" -]New value: +[ + "venda" +]
2 tool updates
- Added
brokeria_capacidade_pre_search - Added
brokeria_info_bairro
1 tool update
- Added
brokeria_estimar_parcela_educacional
8 tool updates
- Changed
brokeria_agendar_visita14 fields changed- added
Input schema / properties / contactAdded value: +{ + "description": "Pelo menos um meio de contato obrigatorio (phone ou email)", + "properties": { + "email": { + "format": "email", + "type": "string" + }, + "phone": { + "description": "Telefone com DDD (ex: \"11999887766\")", + "type": "string" + } + }, + "type": "object" +} - removed
Input schema / properties / data_horaRemoved value: -{ - "description": "ISO 8601", - "type": "string" -} - removed
Input schema / properties / emailRemoved value: -{ - "type": "string" -} - removed
Input schema / properties / imovel_idRemoved value: -{ - "type": "string" -} - removed
Input schema / properties / nomeRemoved value: -{ - "type": "string" -} - added
Input schema / properties / notesAdded value: +{ + "description": "Observacoes opcionais", + "type": "string" +} - removed
Input schema / properties / observacoesRemoved value: -{ - "type": "string" -} - added
Input schema / properties / preferred_dateAdded value: +{ + "description": "Data preferida YYYY-MM-DD", + "format": "date", + "type": "string" +} - added
Input schema / properties / preferred_periodAdded value: +{ + "description": "Periodo do dia", + "enum": [ + "manha", + "tarde", + "noite" + ], + "type": "string" +} - added
Input schema / properties / property_idAdded value: +{ + "description": "UUID do imovel (retornado pela busca)", + "type": "string" +} - removed
Input schema / properties / telefoneRemoved value: -{ - "type": "string" -} - added
Input schema / properties / visitor_nameAdded value: +{ + "description": "Nome completo do visitante", + "type": "string" +} - removed
Input schema / properties / websiteRemoved value: -{ - "description": "Do not fill this field", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "imovel_id", - "nome", - "telefone", - "data_hora" -]New value: +[ + "property_id", + "visitor_name", + "contact", + "preferred_date", + "preferred_period" +]
- Changed
brokeria_buscar_imoveis1 field changed- removed
Input schema / properties / mcmvRemoved value: -{ - "description": "Filtrar apenas imoveis MCMV (Minha Casa Minha Vida, ate R$350mil)", - "type": "boolean" -}
- Changed
brokeria_comparar_imoveis2 fields changed- changed
Input schema / properties / imovel_ids / descriptionPrevious value: -"Lista de 2 ou 3 UUIDs de imoveis para comparar"New value: +"Lista de 2 a 4 UUIDs de imoveis retornados pela busca" - changed
Input schema / properties / imovel_ids / maxItemsPrevious value: -3New value: +4
- Changed
brokeria_imoveis_proximos7 fields changed- added
Input schema / properties / latAdded value: +{ + "description": "Latitude (opcional, alternativa a referencia)", + "type": "number" +} - removed
Input schema / properties / latitudeRemoved value: -{ - "description": "Latitude do ponto central", - "type": "number" -} - added
Input schema / properties / lngAdded value: +{ + "description": "Longitude (opcional, alternativa a referencia)", + "type": "number" +} - removed
Input schema / properties / longitudeRemoved value: -{ - "description": "Longitude do ponto central", - "type": "number" -} - changed
Input schema / properties / raio_km / descriptionPrevious value: -"Raio de busca em km (max 20)"New value: +"Raio de busca em km (padrao 5)" - added
Input schema / properties / referenciaAdded value: +{ + "description": "Endereco, CEP, nome de bairro ou ponto de referencia (ex: \"Av Paulista 1578\", \"13084-060\")", + "type": "string" +} - removed
Input schema / requiredRemoved value: -[ - "latitude", - "longitude" -]
- Removed
brokeria_match_imoveis - Removed
brokeria_qualificar_lead - Removed
brokeria_simular_financiamento - Removed
brokeria_status_lead
9 tool updates
- First observed
brokeria_agendar_visita - First observed
brokeria_buscar_imoveis - First observed
brokeria_comparar_imoveis - First observed
brokeria_detalhes_imovel - First observed
brokeria_imoveis_proximos - First observed
brokeria_match_imoveis - First observed
brokeria_qualificar_lead - First observed
brokeria_simular_financiamento - First observed
brokeria_status_lead
Related MCP Connectors
Search 1.8M+ live Brazilian used-car and motorcycle listings, with FIPE reference prices.
Search and manage Paraguay & LatAm real estate from any AI assistant.
Puerto Rico & Colombia real estate: listings, sales, parcels, permits, analytics, AVM reports.
Search authorized real estate in Mexico and manage favorites and publishing with OAuth.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables discovery and evaluation of primary residence housing opportunities in Ibiza, including property scoring, mortgage scenario calculations, and validated submission of candidate listings.-
- AlicenseNot gradedqualityNot gradedmaintenanceEnables real estate property searches with location and criteria filtering, plus comprehensive mortgage calculations including monthly payments and affordability analysis. Currently uses mock data for property searches but provides full mortgage calculation functionality.-
- FlicenseNot gradedqualityCmaintenanceMCP server for querying real estate agents registered with CRECI-SP. Enables searching by name, CRECI number, city, or status, retrieving agent details, and getting statistics.-
- AlicenseNot gradedqualityBmaintenanceEnables structured real estate workflows including property search, agent/client management, market intelligence, mortgage calculations, valuation, investment analysis, and document ingestion, with offline-first capabilities and optional live data integrations.AGPL 3.0
Glama MCP Gateway
Add one secure layer between your agents and this server.