Skip to main content
Glama
milaniseb12-png

inpi-marcas-mcp-server

Buscar marcas por titular (CNPJ/CPF ou nome)

inpi_search_by_owner
Read-onlyIdempotent

Find all trademarks owned by a company or person in Brazil’s INPI pePI by CNPJ, CPF, or name. Ideal for M&A due diligence or checking an existing brand portfolio.

Instructions

Lista as marcas registradas por um titular no pePI (INPI oficial), buscando por CNPJ/CPF ou por nome/razão social.

A busca por CNPJ/CPF é direta. A busca por nome é em DUAS ETAPAS, igual ao site oficial: primeiro devolve os nomes de titular parecidos com o termo (cada um com um número 'pos'), depois é preciso chamar de novo com esse 'pos' para ver as marcas do titular escolhido — não existe atalho, o próprio pePI funciona assim.

Útil para levantar o portfólio de marcas de uma empresa ou pessoa antes de uma due diligence de M&A, ou para conferir se um cliente já tem registros anteriores.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
posNoQuando a busca por nome retorna uma lista de titulares candidatos (nomes parecidos), refaça a chamada com o mesmo nome e este 'pos' para ver as marcas do titular escolhido.
nomeNoNome ou razão social do titular
cnpj_cpfNoCNPJ ou CPF do titular, só números ou formatado
salvar_htmlNotrue = também salva o resultado como um relatório HTML legível (tabela, sem depender de MCP) em disco e devolve o caminho do arquivo.
forcar_atualizacaoNoIgnora o cache local (padrão 6h) e busca de novo no pePI ao vivo.
resultados_por_paginaNoResultados por página. Valores aceitos pelo pePI: 20, 40, 60, 80, 100.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, openWorld and non-destructive, so the safety profile is covered. The description adds meaningful behavior beyond them: the two-stage name search that must be re-invoked with a 'pos' value, plus the fact that the real pePI enforces this flow with no workaround. Minor gaps remain (e.g. no explicit discussion of pagination across the 6h cache beyond what the schema says).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short paragraphs, front-loaded with what the tool does, then the critical two-step caveat, then use cases. Every sentence contributes; only the due-diligence sentence is arguably optional color.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema, so the description must convey return behavior — and it does, describing the candidate-owner list with 'pos' numbers before detail retrieval. Together with the annotations this is enough to call the tool correctly, though a note on how results are paginated/limited would make it fully self-contained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the parameters are already documented. The description nonetheless adds real semantic value by explaining the stateful relationship between 'nome' and 'pos' across two calls, which is the most error-prone part of invocation and is only tersely captured in the schema field text.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: it lists registered trademarks belonging to an owner, retrievable by CNPJ/CPF or by name. The 'por titular' framing implicitly separates it from the name-based sibling searches, but no sibling is named explicitly, so the differentiation is inferred rather than stated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives clear operating context: CNPJ/CPF search is direct, while name search requires a two-step flow with no shortcut, and it names concrete scenarios (M&A due diligence, checking a client's prior registrations). It does not tell the agent when to prefer inpi_search_by_mark or inpi_get_process_detail instead, so routing is left implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.