Dataprev: Fator Acidentário de Prevenção (FAP)
Server Details
Dataprev: Fator Acidentário de Prevenção (FAP), official-source lookup. Platform-hosted, pay per que
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/dataprev_fap-mcp
- GitHub Stars
- 0
- Server Listing
- Dataprev: Fator Acidentário de Prevenção (FAP)
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.2/5 across 7 of 7 tools scored.
Each tool has a clearly distinct purpose: authentication, connection status, FAP data query, marketplace catalog, bug reporting, version info, and toolkit state. No overlap or ambiguity.
Naming conventions are inconsistent: some are single-word verbs (connect, marketplace), one is snake_case with underscores (dataprev_fap_consultar), and others mix verb-noun (show_version) or noun-based (toolkit_info). There is no uniform pattern across the set.
With 7 tools, the set is reasonably scoped. It includes one domain-specific data tool and several generic platform utilities, which is slightly broad but not excessive or sparse.
For the primary purpose of FAP data lookup, the single query tool covers the core need. Authentication and status tools support the workflow, though there is no obvious additional data operation missing. The inclusion of platform-management tools extends beyond the domain but does not create a critical gap.
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 include idempotentHint=true, which is partially reflected by the description mentioning 'non-expiring' and 'session-only' but not explicitly stating idempotency. The description adds behavioral context about the token expiration (permanent vs session) and the dual mode of authentication, which goes beyond the annotations. However, it doesn't disclose potential side effects like creating a session or invalidating previous tokens, but given idempotentHint=true, this is adequate.
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 paragraph that is informative but slightly dense. It front-loads the audience ('MCP.AI for IDE agents') and the core action ('log in in the browser'), but the sentence structure could be simplified for clarity. It earns its place with actionable steps, though it could be broken into bullet points for better scannability. Overall, it is concise with minimal waste.
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 moderate complexity (two usage modes), the description covers the key aspects: the login flow, token acquisition, and both invocation paths. There is no output schema, but the tool likely returns a link or confirmation, which is implied. The description lacks details on error handling (e.g., invalid token), but the provided guidance is sufficient for an agent to orchestrate the authentication flow with the user.
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 has only one optional parameter 'token' with 0% description coverage, so the description must explain its meaning. It does so: 'paste it here for a session-only login: call with { token: "<jwt>" } after the user pastes'. It also clarifies what happens when no args are provided (get the link). This adds semantic meaning beyond the bare schema, but could be more explicit about token format validation, though not required.
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 that this tool is for authentication in MCP.AI, specifically for IDE agents. It distinguishes itself from siblings by describing the login flow (browser login, token copy) and the two ways to use it (config header vs. session token), which is a specific purpose not covered by any sibling names.
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 explicit when-to-use guidance: 'log in in the browser, copy the access token' and explains the best approach (add to config) versus session-only login. It also instructs when to call with no args to get the link, enabling the agent to prompt the user appropriately. This is strong usage guidance, though it does not explicitly mention when not to use it vs siblings, but siblings are unrelated.
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?
Annotations already declare read-only, idempotent, and non-destructive behavior. Description adds value by specifying exactly what the response contains in different states (authenticated:true with empty pending[] vs. connect_url), beyond what annotations cover.
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 primary purpose, followed by relevant condition-detail. No fluff or redundancy.
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?
Covers the two primary scenarios (all connected, credentials missing) but leaves intermediate states (partial connectivity) implicit. Given the tool's simplicity and lack of output schema, this is adequate but not exhaustive.
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?
No parameters exist, so description correctly omits param details. Baseline of 4 applies since there is no parameter documentation burden.
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?
Clearly states the tool returns connection status and URLs, with specific outcome conditions for connected vs. missing-credentials states. This distinguishes it from sibling 'authenticate' which actually performs authentication.
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 use for checking current connection status, but does not explicitly contrast with the 'authenticate' sibling or state when not to use. Provides outcome context for when all providers are connected vs. missing credentials, giving clear situational awareness.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
dataprev_fap_consultarARead-onlyIdempotentInspect
Dataprev: Fator Acidentário de Prevenção (FAP), consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| login_cpf | No | ||
| login_senha | No | ||
| pkcs12_cert | No | ||
| pkcs12_pass | No | ||
| ano_vigencia | No | ||
| cnpj_estabelecimento | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark readOnly/idempotent/non-destructive; the description adds meaningful context: the query is hosted by the platform, paid per consultation with prepaid credit, requires no platform credentials, and concerns non-confidential official data with LGPD responsibilities. 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 compact and front-loads the core purpose in the first clause. The following sentences about hosting, payment, and LGPD are relevant but add some length; still no wasted 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 tool with 6 parameters and no output schema, the description is incomplete: it omits return-value behavior, authentication semantics (why login/pkcs12 params exist given 'no platform credentials'), and the meaning/format of ano_vigencia. Payment and legal context are helpful, but operational essentials are missing.
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 has 6 parameters with 0% description coverage, and the description does not explain login_cpf, login_senha, pkcs12_cert, pkcs12_pass, or ano_vigencia. Only the required cnpj_estabelecimento is inferable from the tool name. The description fails to compensate for missing schema 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?
Description clearly states the action: 'consulta em fonte oficial' of Dataprev's FAP (Fator Acidentário de Prevenção). This is a specific query operation on an official resource, and it distinguishes itself from generic sibling tools like authenticate and marketplace.
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?
Provides clear context: use it to query official Brazilian FAP data, with prepaid credit and no platform credentials, and notes that data is the same as available to citizens. It does not explicitly mention alternatives or when-not-to-use, but the context is sufficient for this standalone query tool.
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 goes far beyond the annotations (readOnlyHint=false, openWorldHint=true) by disclosing that invoke works even when the MCP is not installed, returns connect/checkout links for auth/payment, requires owner/admin for writes, and that search/describe flag installation state. No contradictions with annotations; it adds substantial behavioral context.
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 dense paragraph that is not front-loaded with a concise summary; it mixes purpose, flow, edge cases, and permissions in a stream-of-consciousness style. While the length is justified by the tool's complexity, it could be better structured with bullet points or subheadings. It's more than necessary but not excessively verbose given the scope.
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 and lack of output schema, the description covers the full range of actions (search, describe, invoke, install, list_tools, subscribe/cancel, report_bug, request_mcp, and prompt library) and critical usage nuances like permission requirements and payment/auth flows. It is sufficiently complete for an agent to know when and how to use each sub-action.
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 description coverage, the description explains the core 'action' parameter's enum values and key parameters like mcp_id, tool_id, arguments, and prompt-related ones, but leaves many others (limit, message, immediate, tier_slug, etc.) undocumented. It adds meaning for the most critical parameters but does not fully compensate for the low schema coverage, so a baseline of 3 with some extra is appropriate.
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 that this tool is the official mcp.ai marketplace, covering both MCP/tool catalog and prompt library, with a specific three-step flow (search → describe → invoke). It distinguishes its role from siblings by naming the actions it exposes and the prompt library capability. This is a specific verb+resource+scope and differentiates from sibling tools like authenticate or report_bug.
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 explicit when-to-use guidance for each sub-action: prefer invoke for one-off use, use install for permanent addition, and notes that subscribe/cancel handle billing. It also explains when not to install (bloat) and how to handle credential/payment flows. This is strong guidance on selecting between alternatives.
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 (readOnlyHint=false, idempotentHint=true) are present, but the description adds context about including conversation for reproduction. It does not explain the outcome or side effects beyond that, and the idempotentHint seems inconsistent with real-world bug reporting, but the description does not contradict it.
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 that are front-loaded with the main purpose, no fluff or unnecessary details.
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 feedback tool with 3 optional/required params and no output schema, the description covers the essential information. It lacks details on what happens after submission, but that is not critical for using it.
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 0%, so the description must clarify parameters. It mentions including conversation array for reproduction, which explains that parameter, but does not explain 'message' or 'context' beyond their obvious meanings. Partial compensation.
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 reports bugs, missing features, or feedback, with a specific verb and resource. It is easily distinguishable from sibling tools like authenticate or connect.
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 usage for reporting issues but does not explicitly state when to use it vs alternatives, nor any exclusions or prerequisites. It provides only a general suggestion to include conversation for reproduction.
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 declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the tool is clearly a safe read operation. The description adds the detail that it shows versions, which is consistent. Although the description doesn't add extra behavioral context like whether it requires authentication, the annotation coverage is sufficient and the tool is trivially safe.
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 sentence, highly concise, and front-loaded with the core action. Every word is useful, with no unnecessary 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?
Given the tool's simplicity (no parameters, no output schema, read-only operation), the description is complete enough. It aligns with annotations and clearly defines the tool's function. A fully comprehensive description might mention that it returns version strings, but the purpose is unambiguous.
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 all necessary information. The description doesn't need to add parameter semantics. The baseline for zero params is 4, and the description adequately covers the purpose.
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 what the tool does: it shows the current MCP platform and adapter versions. This is a specific verb ('show') plus resource ('MCP platform and adapter versions'), and it distinguishes itself from siblings like 'authenticate' or 'connect' by focusing on version information.
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 usage when needing to check versions but does not explicitly mention when to use it over alternatives. Since there are sibling tools like 'toolkit_info' that might also provide version-related information, the description could be more explicit about exclusivity, but the context is fairly clear.
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=true, idempotentHint=true, and destructiveHint=false. The description adds useful behavioral detail by specifying exactly what 'state' means (MCPs, status, accounts, catalog counts) without contradicting 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?
A single, front-loaded sentence that efficiently communicates the tool's value without fluff or redundancy.
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 zero-parameter, read-only information tool with no output schema, the description fully conveys the return semantics. It is sufficient for an agent to decide when to invoke it.
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 takes zero parameters, so per the rubric the baseline is 4. The description adds no parameter documentation, but none is needed.
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 with a specific verb and resource: 'Returns the current toolkit state' and itemizes the exact aspects (installed MCPs, connection status, accounts, catalog tool counts). It is easily distinguished from sibling tools like connect, authenticate, and 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 purpose is so clearly scoped that usage context is evident—an agent would know to call this when it needs toolkit state. However, it does not explicitly state when not to use it or mention alternatives (e.g., show_version for version details).
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
- AlicenseNot gradedqualityCmaintenanceEnables consulting Brazilian federal tax debt certificates (CND) from the official PGFN source through a read-only MCP tool, with pay-per-use hosted access.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official Brazilian labor inspection data (CAEPI) via a hosted, read-only API with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying official Brazilian insurance broker registry data from SUSEP through a read-only, hosted MCP server with pre-paid usage.MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only queries to official SUSEP data on Brazilian insurance companies via a hosted MCP server with prepaid pay-per-use access and no platform credentials required.MIT
Your Connectors
Sign in to create a connector for this server.