Skip to main content
Glama

Cadastro PF Plus

Server Details

Extended registration data for an individual from a CPF, beyond the basics. Platform-hosted, no cred

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/cpf_cadastral_plus-mcp
GitHub Stars
0
Server Listing
Cadastro PF Plus

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.4/5 across 7 of 7 tools scored. Lowest: 3.8/5.

Server CoherenceB
Disambiguation3/5

Some tools overlap in purpose, particularly connect and toolkit_info both report connection status, while authenticate handles login. The marketplace tool is a large catch-all that could be confused with platform management, but its detailed description helps distinguish it.

Naming Consistency2/5

Tool names are inconsistent: some use verb-only (authenticate, connect), some use verb_noun with underscores (report_bug, show_version), some are nouns (marketplace, toolkit_info), and one is a Portuguese descriptive phrase (cpf_cadastral_plus_consultar). The mix of languages and conventions makes the set feel chaotic.

Tool Count4/5

With 7 tools, the count is within the typical well-scoped range. However, only one tool actually relates to the server's stated CPF consultation purpose, while the rest are generic platform utilities, making the set feel slightly over-inclusive.

Completeness3/5

The core CPF consultation workflow is covered (authenticate, connect, consult), but there are no other CPF-specific operations such as batch consultation, validation, or historical queries. The inclusion of many platform-management tools doesn't fill these domain gaps.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

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

Annotations declare idempotentHint=true, destructiveHint=false, readOnlyHint=false, and the description does not contradict these. The description adds valuable context about persistence (permanent vs session-only) and the no-args behavior to get a link, beyond what annotations state. It stops short of explaining edge cases like invalid tokens or clearing existing sessions, but overall it discloses key behaviors.

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?

The description is front-loaded with the primary purpose and then details two usage modes and the no-args behavior. It is somewhat dense and long, but every sentence adds necessary information. No filler words or repetition.

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?

Given the tool's moderate complexity (two flows, optional token), the description covers the workflow thoroughly: browser login, token copy, config vs. session, and no-args call. It does not describe the return value or success/error behavior, but in the absence of an output schema this is a minor gap. Overall it provides enough context for an agent to select and invoke the tool correctly.

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

Parameters5/5

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

The schema provides only the token property name with no description and 0% coverage. The description compensates fully by explaining that the token is a JWT to be pasted for session-only login, that it can be omitted to get the link, and that a permanent connection can be set via config. This gives the agent complete understanding of the parameter's purpose and optionality.

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

Purpose5/5

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

The description clearly states the tool is for authenticating to MCP.AI for IDE agents, using a browser login and access token. It distinguishes itself from siblings by focusing solely on authentication and explaining the two login modes (permanent via config vs session-only via token). It is not a tautology and gives specific actionable steps.

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?

The description provides clear context for when to use this tool: when setting up authentication for MCP.AI. It explains the two distinct flows (permanent config and session-only token) and how to call with or without the token parameter. However, it does not explicitly mention when not to use this tool or list alternatives, though none are apparent among siblings.

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

connectA
Read-onlyIdempotent
Inspect

Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, and the description adds state-dependent behavior: 'authenticated:true with empty pending[]' when all connected, and 'connect_url' when credentials are missing. This provides helpful context beyond what annotations offer, with no contradictions.

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

Conciseness5/5

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

Two sentences, straight to the point. The first sentence states the core purpose; the second explains the two key behavioral cases. No fluff or redundancy.

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?

The description covers the two main states (all connected vs. missing credentials) and the return values for each. It doesn't explicitly address partial connection, but for a simple read-only status tool with zero parameters, this is sufficient. No output schema exists, so the description's return-value details help fill that gap.

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?

The tool has zero parameters, so schema coverage is trivially 100%. Baseline for 0-parameter tools is 4, and the description appropriately adds no parameter-specific detail because none exist.

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

Purpose5/5

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

The description uses a specific verb ('returns') and identifies the resource ('connection status and URLs'). It clearly distinguishes from sibling tools like 'authenticate' by focusing on status retrieval rather than creating or modifying connections.

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?

The description clearly implies usage: use this tool when needing connection status or connect URLs. It doesn't explicitly exclude alternatives, but the context makes it obvious when this is the appropriate choice, as opposed to tools like 'authenticate' or 'marketplace'.

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

cpf_cadastral_plus_consultarA
Read-onlyIdempotent
Inspect

Dados cadastrais ampliados de uma pessoa física a partir do CPF, além dos dados básicos. Hospedado pela plataforma, sem credenciais, pague por consulta com crédito pré-pago. Consulta informação de ACESSO PÚBLICO em bases e fontes oficiais (a mesma disponível ao cidadão), não é dado privado nem sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).

ParametersJSON Schema
NameRequiredDescriptionDefault
CPFYes
completoNo
Behavior5/5

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

Annotations already declare this as read-only and idempotent, which the description complements by adding important behavioral traits: it is hosted by the platform, requires no credentials, incurs a cost per query, accesses only public official data (not private or confidential), and places LGPD compliance responsibility on the client. These details go well 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.

Conciseness5/5

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

The description is a single concise paragraph that front-loads the main purpose, then adds relevant context (hosting, authentication, cost, data classification, LGPD). Every sentence earns its place without redundancy or fluff.

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?

For a simple read-only tool with two parameters and no output schema, the description provides sufficient context about purpose, access, cost, and legal compliance. However, it omits explicit guidance on the 'completo' parameter and does not describe the return data structure, which would improve completeness.

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

Parameters2/5

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

The input schema has two parameters (CPF and completo) with no descriptions (0% schema coverage). The description mentions 'expanded data' but does not explicitly explain the 'completo' boolean parameter or its effect on the response. The only hint is 'além dos dados básicos,' which is too vague to fully clarify the parameter's semantics.

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

Purpose5/5

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

The description clearly states the tool's purpose: it retrieves expanded registration data (dados cadastrais ampliados) for an individual from their CPF, in addition to basic data. This is a specific resource and action, and it distinguishes itself from the unrelated sibling tools (e.g., authenticate, report_bug).

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?

The description provides useful context indicating when to use the tool: it queries public-access official data, requires no credentials, and is paid per query with prepaid credit. It does not explicitly mention alternatives or exclusions, but none of the sibling tools are competitors, so the context is sufficient.

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

marketplaceAInspect

The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

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

The description discloses key behaviors beyond annotations: invoke runs uninstalled MCPs, returns connect/login links for credentials, returns checkout links for payments, and requires workspace owner/admin for writes. It also covers the prompt library's non-MCP behavior. No contradictions with annotations (readOnlyHint=false, openWorldHint=true) exist.

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?

The description is dense and comprehensive, but somewhat lengthy. It is structured into clear sections (core flow, key caveats, prompt library) and every sentence adds value, though some could be tightened. The front-loaded core flow gives immediate orientation.

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

Completeness5/5

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

For a tool with 23 parameters, no output schema, and many actions, the description is remarkably thorough. It covers the primary flows, auth requirements, payment edge cases, role-based permissions, and the separate prompt library. It even notes the distinction between installed_in_toolkit vs installed_in_workspace, leaving little ambiguity for the agent.

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?

With 0% schema description coverage, the description does substantial work by explaining the semantics of action values (search, describe, invoke, install) and the purpose of mcp_id, tool_id, and arguments. It does not cover all 23 parameters (e.g., limit, immediate, tier_slug), but it conveys the essential parameter relationships for the core flow, earning above baseline.

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

Purpose5/5

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

The description clearly identifies the tool as the official mcp.ai marketplace and explains its dual role as a catalog and execution engine. It distinguishes itself by listing concrete capability requests like 'find an MCP that does X' and 'consulta um CPF', and outlines the core flow of search → describe → invoke, making it unmistakable what the tool does.

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

Usage Guidelines5/5

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

The description provides explicit when-to-use guidance, e.g., 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT', and 'instead' alternatives like using search_calls_extensive (implied by structure). It also explains when to use report_bug and request_mcp, giving clear decision criteria for the agent.

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

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior3/5

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

Annotations already declare idempotentHint=true, readOnlyHint=false, and destructiveHint=false. The description adds minimal behavioral context beyond that, such as the instruction to include conversation for reproduction, but does not disclose what happens after reporting (e.g., ticket creation) or any side effects. It does not contradict 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.

Conciseness5/5

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

The description is concise and front-loaded, using two sentences to convey purpose and usage guidance without unnecessary words. Every sentence adds value.

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

Completeness3/5

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

For a simple tool with 3 parameters and no output schema, the description covers the main purpose and mentions the reproduction step, but it omits guidance on the 'context' parameter and does not describe the return value or post-report behavior. The conversation type mismatch further reduces completeness.

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

Parameters2/5

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

With 0% schema coverage, the description carries responsibility for parameter guidance. It mentions 'conversation array' but the schema defines conversation as a string (likely a serialized array), which is misleading. It does not explain the 'message' parameter's expected content or the 'context' parameter. Only partial and ambiguous parameter guidance is provided.

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

Purpose5/5

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

The description clearly states the tool's purpose with specific verbs and resources: 'Report a bug, missing feature, or send feedback.' This is explicit and distinguishes it from sibling tools, which are unrelated (authenticate, connect, etc.).

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?

The description indicates when to use the tool ('Report a bug, missing feature, or send feedback') and provides concrete guidance on reproducing the issue by including the conversation array. It does not explicitly mention when not to use it, but the sibling tools are unrelated, so there is no ambiguity.

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

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already indicate readOnly and idempotent behavior. The description adds value by specifying that both platform and adapter versions are included, giving the agent clarity on what to expect from the output.

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

Conciseness5/5

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

The description is a single, concise sentence that is front-loaded with the action and clearly states the output. Every word contributes meaning without any waste.

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

Completeness5/5

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

For a version-display tool with no parameters, annotations, and no output schema, the description adequately covers what the tool does and what it returns. It is complete within the context of its simplicity.

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?

The tool has zero parameters, so the schema covers all inputs vacuously. The baseline for 0 params is 4; no additional parameter information is needed.

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

Purpose5/5

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

The description clearly states the tool's function with a specific verb ('Show') and resource ('current MCP platform and adapter versions'). It distinguishes itself from siblings like authenticate and report_bug, which serve different purposes.

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

Usage Guidelines3/5

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

The description implies usage when version information is needed, but does not explicitly state when to use it over alternatives or mention any exclusions. For a simple, zero-parameter tool in this context, implied usage is acceptable.

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

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds value by specifying exactly what state data is returned (MCPs, connection statuses, accounts, tool counts), which goes beyond the annotations and clarifies the tool's output behavior.

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

Conciseness5/5

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

The description is a single, well-structured sentence that front-loads the purpose and enumerates the return components without any fluff or repetition. Every word earns its place, making it highly concise.

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

Completeness5/5

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

For a parameterless, read-only state inspector, the description fully covers the tool's purpose and return payload. Since there is no output schema, enumerating the returned fields (installed MCPs, connection status, accounts, catalog tool counts) provides complete contextual information.

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?

The tool accepts zero parameters, so there are no parameter semantics to clarify. Applying the baseline of 4 for descriptions with no parameters is appropriate; the description correctly omits any parameter-related explanation.

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

Purpose5/5

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

The description uses the specific verb 'Returns' with the resource 'current toolkit state' and enumerates the exact content: installed MCPs, connection status, accounts, and catalog tool counts. This clearly distinguishes it from the sibling action tools like authenticate or connect, which perform different operations.

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?

The description clearly implies the tool is for inspecting toolkit state, providing context for when it should be used. However, it does not explicitly state when not to use it or name alternative tools for similar information, so it stops short of full usage guidance.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Consulta dados cadastrais e situação de CPF na Receita Federal a partir de um número de CPF. Serve como ferramenta somente leitura, paga por uso, para clientes MCP.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Enables querying basic Brazilian CPF registration data (name, status, birth date) via a hosted MCP server with a single read-only tool, usable from any MCP client.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Enables complete credit analysis of Brazilian individuals from CPF, retrieving registration data, credit score, debts, and payment history. It is a hosted, read-only MCP server with prepaid per-query pricing.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.