Secretaria de Inspeção do Trabalho: Trabalho Escravo
Server Details
Secretaria de Inspeção do Trabalho: Trabalho Escravo, official-source lookup. Platform-hosted, pay p
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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.1/5 across 7 of 7 tools scored.
Each tool has a clear distinct purpose: authenticate handles credentials, connect checks status, marketplace provides catalog access, report_bug and show_version are platform utilities, toolkit_info lists state, and sit_trabalho_escravo_consultar does the domain query. There is minor overlap between authenticate and connect (both touch connection) but they are still distinguishable.
Naming is inconsistent: all tools use camelCase except one long Portuguese snake_case (sit_trabalho_escravo_consultar). Some are verbs (authenticate, connect), some are nouns (marketplace, toolkit_info). The mix of languages and cases creates unpredictability.
7 tools is a reasonable count, but most are platform-level utilities unrelated to the server's stated domain (Trabalho Escravo). Only one tool actually addresses the domain, making the collection feel scattershot for the server's name.
The server is named after a specific domain (Secretaria de Inspeção do Trabalho: Trabalho Escravo) but exposes only a single query tool (sit_trabalho_escravo_consultar). There are no listing, filtering, pagination, or other lifecycle operations—just one lookup. This is severely incomplete for the stated purpose.
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 declare idempotentHint=true and destructiveHint=false, and the description does not contradict them. The description adds behavioral context by explaining that calling with no args returns a login link, and that providing a token enables session-only login. However, it doesn't state that the token might be validated or what errors might occur, so it adds some but not extensive transparency beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with three sentences that each serve a purpose: explaining the purpose, recommending permanent config, and explaining invocation patterns. It is fairly front-loaded, stating the tool's function immediately. Slightly verbose due to the multiple alternatives, but still tight.
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 simple tool with one optional parameter and no output schema, the description covers the key scenarios (no args, token arg) and provides necessary guidance. It does not mention return values, but without an output schema, the agent might need to infer that the tool returns a link or success message, which is a minor gap.
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 parameter (token) with 0% schema description coverage. The description does explain the token parameter's meaning (a JWT token to paste for session login), which adds value beyond the schema's bare property definition. However, because there is essentially one parameter and the description covers it well, the score is at baseline.
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 purpose: to authenticate the user by logging in via browser, obtaining a token, and optionally storing it for permanent or session-only access. It distinguishes this from sibling tools (e.g., connect) by highlighting its focus on authentication, though it doesn't explicitly contrast with 'connect', but the function is distinct.
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 explicit when-to-use scenarios: call with no args to get the link, call with token after user has pasted it, and recommends adding the token to config for permanent connection. It effectively tells the agent how to handle different authentication states, which is a strong usage guideline.
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 readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds value by detailing the return behavior under two conditions (all providers connected vs missing credentials), which goes beyond the static annotations. No contradictions detected.
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 at two sentences, both front-loaded with the core function (returning status and URLs) followed by conditional details. Every sentence adds essential information, with no filler 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 tool with no parameters and no output schema, the description fully explains what the tool returns and under what conditions. The annotations cover safety, and the two behavioral cases are clearly described. This is complete for the tool's simplicity.
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 description has no need to explain parameters. Per the rubric, baseline for 0 params is 4. The description does not add parameter-specific information, but that is not necessary here. It appropriately focuses on output behavior.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, with specific behavior for connected vs missing-credential scenarios. This distinguishes it from siblings like 'authenticate' which handles authentication, and 'marketplace' which deals with marketplace functions. The verb 'Returns' plus resource 'connection status and URLs' is 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?
Usage context is implied through the description's focus on connection states, but there is no explicit statement of when to use this tool versus alternatives. It does not mention exclusions or preferred tools for different situations. For instance, it does not say 'use this to check if authentication is needed' or compare with 'authenticate'. The description gives clear context but lacks explicit guidance on when/when-not to use.
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 many behaviors beyond the annotations, such as invoke working even when the MCP is not installed, returning connect/checkout links and requiring retry, write actions needing workspace owner/admin, and search/describe flagging installed status. It also explains the prompt library's behavior with shareable links that open without login. Annotations only declare openWorldHint, so this additional context is valuable and not contradictory.
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 lengthy but well-structured with 'Core flow', 'KEY', and explicit action distinctions. Every sentence adds value, though some parts could be tightened. For a tool with 14 actions and 23 parameters, this length is acceptable and information-dense.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers all action areas: search, describe, invoke, install/uninstall, list_tools, subscribe/cancel, report_bug, request_mcp, and prompt library functions. It includes auth requirements, payment/credential edge cases, and installed status flags. With no output schema, it still explains key return behaviors (e.g., connect/checkout links, shareable prompt URLs), making it highly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 23 parameters with 0% description coverage, so the description must compensate. It effectively explains the meaning of the action parameter by describing each action's flow and associated parameters (e.g., invoke uses tool_id + arguments, describe uses mcp_id). However, it doesn't detail many parameters like cancel_reason, conversation, or prompt_targets, leaving some gaps for an agent to infer.
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 purpose: 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It differentiates from siblings by describing its unique role as a catalog and executor of MCPs, and it outlines the core search→describe→invoke flow, distinguishing it from authentication or system info tools.
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: 'Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile... → invoke RUNS that tool.' It also advises when to use invoke vs install: 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT.' It lists alternatives like list_tools for callable tools, and directs to request_mcp when nothing fits.
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 indicate idempotency and non-destructive behavior, and the description adds the specific instruction to include conversation history. It does not elaborate on side effects or outcomes, but given annotation coverage, the added value is modest.
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 one concise sentence that states the purpose and a key usage hint. No redundant language or structural issues.
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 tool with no output schema, the description covers the main action and reproduction context. However, it lacks details on expected message content or response behavior, making it adequate but not thorough.
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 interpret parameters. It only mentions the conversation array, leaving 'message' and 'context' unexplained. This partially compensates but is insufficient for full clarity.
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: reporting bugs, missing features, or feedback. It specifies the target (bug/feature/feedback) and mentions the conversation array for reproduction, distinguishing it from sibling tools like authenticate or 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?
It provides clear instructions to include the conversation array for reproduction, but does not explicitly state when not to use it or list alternative tools. Given distinct siblings, the intended use case is inferred.
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?
The description discloses that it shows versions, which is consistent with the readOnlyHint and idempotentHint annotations, adding no contradiction. However, it does not add much beyond what the annotations already imply (read-only, non-destructive). Since the bar is lower with annotations, a 3 is appropriate as it adds minimal but acceptable 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 sentence, which is extremely concise and front-loaded with the core purpose. Every word earns its place, making it an example of effective brevity.
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 has no parameters, an output schema is not necessary, and the description covers the essential purpose. The annotations provide safety context. For such a simple tool, the description is complete enough, though it could mention what the output looks like, but that is not critical given the lack of output schema.
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, and the schema coverage is 100% (empty properties). Based on the calibration, a baseline of 4 is given for 0 parameters. The description does not need to add parameter info as there are none, so this score is justified.
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 the tool shows the current MCP platform and adapter versions, which is specific and distinguishes it from sibling tools like authenticate or connect. However, it could be more explicit about the resource being queried, but it is not a tautology and serves its purpose.
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 tool is a simple read-only version query, and the description implies it should be used when the agent needs to know the platform or adapter versions. There are no alternatives mentioned, but given its simplicity, the context is clear enough. No exclusions are needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sit_trabalho_escravo_consultarARead-onlyIdempotentInspect
Secretaria de Inspeção do Trabalho: Trabalho Escravo, 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 |
|---|---|---|---|
| cpf | No | ||
| cnpj | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly and idempotent hints. The description adds valuable context: payment model (prepaid credits), no credentials needed, data is not confidential, and LGPD responsibility. This goes 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 paragraph, reasonably concise, and clearly states the purpose first. It includes extra info (payment, LGPD) but is not overly verbose.
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 there is no output schema and no parameter documentation, the description should clarify expected inputs (CPF/CNPJ) and outputs. It only gives generic info about official sources and payment. This is insufficient for a complete understanding.
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 2 params (cpf, cnpj) with no descriptions, and the description does not mention them or explain their roles. It fails to add meaning beyond the schema; the tool's purpose implies CPF/CNPJ, but the description never says so.
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 specifies the tool's function: a query to official Brazilian sources about slave labor ('Trabalho Escravo'). The verb 'consulta' and specific subject matter make the purpose unambiguous, and it distinguishes from siblings which are generic platform tools.
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 context (official source, paid per query, no platform credentials) but does not explicitly state when to use this tool versus alternatives. However, there are no overlapping siblings, so the guidance is adequate but not explicit.
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, covering the safety profile. The description adds valuable context about the actual content returned (installed MCPs, connection status, accounts, catalog counts), which goes beyond the annotations and helps the agent understand what to expect. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, dense sentence that conveys all necessary information without any waste. It front-loads the purpose and enumerates the specific data returned, making it efficient and easy to parse.
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 informational tool, the description is complete. It states exactly what the output contains (installed MCPs, statuses, accounts, catalog counts), so the agent knows what to expect even without an output schema. No additional details are needed given the simplicity.
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 baseline per instructions is 4. The description doesn't need to add parameter details since there are none. The schema coverage is 100% (no properties), so nothing is missing.
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 returns the current toolkit state, listing installed MCPs, connection status, accounts, and catalog tool counts. This clearly distinguishes it from sibling tools like connect, marketplace, and show_version, which are action-oriented. The verb 'returns' and specific resource make the purpose 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 clearly implies usage for inspecting the toolkit state, which is the only read-only informational tool among siblings. It doesn't explicitly say when not to use it, but the unique nature and contrast with action-oriented siblings (connect, authenticate, etc.) make the intended context clear. No alternatives are named, but none are needed given the tool's specific focus.
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 gradedqualityCmaintenanceConsulta infrações trabalhistas registradas pelo Ministério do Trabalho e Emprego a partir de CPF ou CNPJ. Enables read-only querying of labor infractions for individuals or companies via MCP.MIT
- AlicenseNot gradedqualityCmaintenanceChecks if an employer is on Brazil's forced labor list ('Lista Suja') using CPF or CNPJ. This read-only MCP server works over HTTP with any MCP client.MIT
- AlicenseNot gradedqualityCmaintenanceConsulta o número do PIS e dados associados de uma pessoa a partir do CPF, na base do Ministério do Trabalho. Servidor MCP somente leitura, hospedado e pago por consulta.MIT
- AlicenseNot gradedqualityCmaintenanceVerifica o recebimento do Seguro Defeso a partir do CPF e NIS, com ferramenta somente leitura, hospedada e paga por consulta.MIT