Dados Cadastrais PF (Brasil)
Server Details
Registration data for an individual in Brazil from the CPF and name. Platform-hosted, no credentials
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/registro_pf_br-mcp
- GitHub Stars
- 0
- Server Listing
- Dados Cadastrais PF (Brasil)
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.3/5 across 7 of 7 tools scored.
Several tools overlap: 'connect' and 'toolkit_info' both report connection status; 'authenticate' and 'connect' handle related auth/connection flows; 'report_bug' duplicates an action embedded in 'marketplace'. These overlapping boundaries make tool selection ambiguous.
Names follow no consistent pattern: single words ('connect', 'marketplace'), snake_case verb nouns ('report_bug', 'show_version'), noun-only ('toolkit_info'), and a Portuguese phrase ('registro_pf_br_consultar'). The mixed conventions are hard to predict.
Seven tools is a reasonable number, but most are generic platform utilities (auth, version, reporting) tangential to the server's indicated purpose of Brazilian CPF data. The single domain tool feels out of place, so the count is neither too high nor too low but the scope is unfocused.
For a server dedicated to 'Dados Cadastrais PF', only one query operation exists (registro_pf_br_consultar). There are no additional lookup variants, no historical queries, and no supporting data operations. The rest of the tools address platform management, not the domain, leaving the core purpose severely incomplete.
Available Tools
7 toolsauthenticateAIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotent=true, readOnly=false, and destructive=false. The description adds valuable behavioral details: the permanent non-expiring nature of the header-based auth, the session-only scope of pasted tokens, and the fact that calling with no args returns a login link. It does not contradict any annotations, though it does not describe potential side effects or exact return values for successful token submission.
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 purpose and uses three sentences to cover all invocation modes and configuration options. Every sentence contributes useful information, though there is slight redundancy in 'log in in the browser, copy the access token' and 'paste it here' phrasing, but it remains concise overall.
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 one-parameter authentication tool with no output schema, the description is quite complete: it explains the browser flow, permanent vs. session-only options, and how to invoke with or without a token. The main gap is that it does not specify what a successful token-based call returns (e.g., confirmation message), but the core usage is well covered.
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 only defines 'token' as a string with zero description coverage, so the description carries the full burden. It compensates exceptionally well by explaining the token is a JWT copied from the browser, how to use it in the call, and that omitting it returns a login link. This gives far more semantic meaning than the bare 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 explicitly states the tool's purpose: logging into MCP.AI by obtaining an access token from a browser. It clearly describes the resource (MCP.AI) and the action (log in, get link, send token), and the invocation modes (no args, with token, config header) make the behavior unambiguous. It is differentiated from sibling tools by its focus on authentication flow rather than generic connection or utilities.
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 gives clear usage context: it recommends adding the token as an Authorization header for a permanent connection, or pasting it for a session-only login. It also instructs the agent to call with a token after the user pastes, or with no arguments to get the link. However, it does not explicitly mention when not to use this tool or name alternatives from the sibling list, such as 'connect'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint, idempotentHint, and destructiveHint annotations already establish the safety profile. The description adds value beyond that by disclosing conditional behavior: it returns different fields depending on connection state, including the presence of pending[] and connect_url. This helps the agent interpret responses, though it could be more thorough by covering partial connection states.
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 exceptionally concise — two sentences. The first sentence front-loads the core purpose ('Returns connection status and URLs'), and the second adds necessary conditional detail. Every word earns its place, with no redundancy or fluff.
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 no parameters and no output schema, the description adequately conveys the two main outcomes: fully connected and missing credentials. However, it does not describe what happens when only some providers are connected (e.g., whether pending[] is populated). Since the description is otherwise clear and the tool is simple, this is a minor gap rather than a serious deficiency.
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 tool has zero parameters, so the schema provides complete coverage (100%). The description does not need to elaborate on parameters. According to the rubric, a zero-parameter tool gets a baseline of 4 because there is nothing to contextualize beyond 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's function: 'Returns connection status and URLs.' It specifies the output in different conditions (authenticated:true with empty pending[] vs connect_url when credentials are missing), distinguishing it from siblings like 'authenticate' which likely performs the actual connection. The verb 'returns' and resource 'connection status' are 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?
The description implies when to use this tool: to check connection status and retrieve URLs. It describes result variations ('When all providers are connected... When credentials are missing...'), giving context on expected outcomes. However, it does not explicitly state when not to use it (e.g., 'use authenticate to connect') or name alternative tools, though the sibling list makes the distinction relatively clear.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses behavior beyond the annotations: invoke works on uninstalled MCPs one-off, it returns connect/checkout links for auth/billing and then the user retries, install makes MCPs permanent, and writes require workspace owner/admin. These details are not derivable from the annotation flags.
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 dense and long, but every sentence adds unique value about actions, workflows, or constraints. It is front-loaded with the main purpose, though the wall-of-text format could benefit from bullet points or section breaks for readability.
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 tool's complexity (23 parameters, 14 actions) and lack of output schema, the description is remarkably complete. It covers the main workflows, permissions, billing/auth behaviors, installed flags, and the prompt library, with no significant missing context.
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 23 parameters and 0% schema coverage, the description compensates by explaining the core action flow and key parameters (action, mcp_id, tool_id, arguments, prompt_* fields). However, it does not cover several less-common parameters (immediate, tier_slug, prompt_targets, cancel_reason, etc.), leaving gaps for those.
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 identifies the tool as 'the official mcp.ai marketplace' with a specific role: catalog and execution engine for MCPs, plus a prompt library. It distinguishes itself from siblings by outlining the core flow (search/describe/invoke/install) and listing unique actions like request_mcp and publish_prompt.
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?
Explicit guidance is provided for when to use invoke vs install ('Use install only to make an MCP PERMANENT in the active toolkit; prefer invoke for a single/occasional use'), and when to use list_tools, subscribe/cancel, report_bug, request_mcp, and prompt actions. Permission requirements for writes are also stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
registro_pf_br_consultarARead-onlyIdempotentInspect
Dados cadastrais de uma pessoa física no Brasil a partir do CPF e nome. 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).
| Name | Required | Description | Default |
|---|---|---|---|
| Cpf | Yes | ||
| Name | Yes | ||
| Surname | Yes | ||
| completo | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is known. The description adds useful behavioral context: 'sem credenciais' (no authentication), 'pague por consulta com crédito pré-pago' (cost side effect), and that data is public/official with LGPD responsibility on the client. No contradiction with 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 three sentences, front-loaded with the core purpose, then covering credentials/billing, and finally legal context. Each sentence adds information, though the third sentence about LGPD is somewhat tangential to tool selection/invocation. Overall it is tight and well-structured.
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 4 flat parameters and no output schema, the description covers purpose, access, cost, and data classification. However, it does not explain the 'completo' parameter or indicate what the returned data looks like, which are relevant gaps for an agent deciding whether this query satisfies the user's need.
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 0%, so the description must compensate, but it only mentions 'CPF e nome' which loosely maps to Cpf, Name, and Surname. The 'completo' boolean parameter is entirely unexplained, and no format or constraint details are provided. The description adds little beyond the parameter names already present 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 opens with a clear verb-resource pair: 'Dados cadastrais de uma pessoa física no Brasil a partir do CPF e nome', stating exactly what the tool does. It distinguishes itself from the sibling tools (e.g., authenticate, connect, marketplace) by being the only one focused on Brazilian CPF/name cadastral 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?
The description gives clear usage context: this is the tool for querying public cadastral data of a Brazilian individual via CPF and name, with no credentials and prepaid credit charges. It does not explicitly list exclusions or alternatives, but none of the sibling tools serve a similar purpose, 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.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool is not read-only, idempotent, and not destructive. The description adds the requirement for conversation context, but does not disclose side effects like ticket creation or confirmation behavior.
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 concise sentences with front-loaded purpose and no filler. Every word serves the tool's understanding.
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 tool is simple but has 3 parameters and no output schema. The description covers the core action and one parameter but omits explanation for 'context' and does not mention return/confirmation behavior. Adequate but with clear gaps.
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 0%, so the description must compensate. It explicitly mentions 'conversation array' but leaves 'context' unexplained and 'message' only implied. Additionally, it calls conversation an array while the schema types it as a string, creating minor ambiguity.
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 uses specific verbs ('report', 'send') and clearly identifies the resources (bug, missing feature, feedback). It distinguishes itself from unrelated sibling tools like authenticate or show_version.
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 gives clear contextual usage by instructing to include the conversation array for reproduction. It does not explicitly name alternatives or exclusions, but sibling tools are unrelated, so the boundary is obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well covered. The description adds the specific resource (platform and adapter versions) but no further behavioral context such as output format or latency. This is adequate for a simple informational tool, but it does not go 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 a single, clear sentence that is front-loaded and contains no unnecessary words. It fully conveys the tool's purpose without verbose or redundant phrasing.
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 no parameters, no output schema, and comprehensive annotations covering safety, the description is complete. It clearly states what the tool shows, and given the trivial nature of the operation, no additional context is required.
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 input schema has zero parameters, so the baseline score is 4. The description correctly focuses on the action and result without needing to explain any parameter semantics, as none exist.
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's function: 'Show the current MCP platform and adapter versions.' It uses a specific verb ('show') and resource ('versions'), and is distinguishable from all sibling tools, none of which relate to version info.
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 use when version information is needed, but it does not explicitly state when to use this tool versus alternatives. However, given the tool's simplicity and distinct purpose, the context is clear enough that no exclusions or alternative references are necessary, though more explicit guidance would help.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the bar is lower. The description adds valuable context by enumerating exactly what state information is returned (installed MCPs, connection status, accounts, catalog tool counts), which goes beyond the generic annotation hints.
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 a single, front-loaded sentence that opens with the action ('Returns') and packs all key information into a readable list. Every word contributes; there is no redundancy or 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?
For a simple read-only tool with no parameters and no output schema, the description fully covers what the agent needs to know: the tool returns a state snapshot with the specified components. It leaves no critical gaps for invocation or expectation-setting.
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 tool has zero parameters, so there are no parameter semantics to convey. The baseline of 4 applies because the description provides full clarity about the tool's input requirements (none) without needing any parameter documentation.
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 uses a specific verb ('Returns') and clearly defines the resource ('current toolkit state') with enumerable details (installed MCPs, connection status, accounts, catalog tool counts). This fully distinguishes it from sibling tools like authenticate, connect, or show_version, 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.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose is so self-evident that usage is clear: use this tool when needing an overview of the toolkit's state. While it doesn't explicitly state when-not-to-use or name alternatives, the context is unambiguous and there is no overlapping sibling tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceProvides expanded Brazilian individual registration data from CPF, offering read-only queries with prepaid credits and no credentials.MIT
- Alicense-qualityCmaintenanceProvides Brazilian company basic registration data (legal name, status, legal nature) from CNPJ through a single read-only MCP tool, hosted with pay-per-use credits.MIT
- Alicense-qualityCmaintenanceConsulta 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
- Alicense-qualityCmaintenanceEnables 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
Your Connectors
Sign in to create a connector for this server.