Internet Janitor
Server Details
Deterministic cleanup tools for decimals, whitespace, filenames, delimiters, and booleans.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolsdetect-delimiterAInspect
Detect comma, semicolon, tab, or pipe delimiters across up to 20 non-empty rows while ignoring delimiters inside double quotes.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden of behavioral disclosure. It explains meaningful edge-case behavior: scanning up to 20 non-empty rows and ignoring delimiters inside double quotes. It does not describe the output format or behavior when delimiters are ambiguous, but the core behavior is transparent.
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, tightly worded sentence that front-loads the main action and includes the most important constraints without unnecessary detail.
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 has no output schema, no annotations, and only one parameter, so the description must carry more weight. It covers the input scope and key parsing behavior, but does not explain what the tool returns, how ambiguous cases are resolved, or what happens when no delimiter is found. These are relevant gaps for a detection tool.
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 documents a string 'input' with a maxLength, providing no semantic detail. The description compensates partially by implying that input is text consisting of rows with delimiters and quoted content, but it does not explicitly describe the parameter's role or format beyond that.
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's action ('Detect') and the specific resource (comma, semicolon, tab, or pipe delimiters). It also distinguishes the tool from its sibling normalization/filename tools, since none of those perform delimiter detection.
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 is implied rather than explicitly stated: the tool detects delimiters in tabular text, which suggests when it should be used. However, it does not provide explicit guidance about when to choose it over alternatives or when it would be inappropriate to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
normalize-booleanAInspect
Normalize common boolean representations such as yes/no, on/off, 1/0, true/false.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility for explaining behavior. It lists accepted input forms but does not disclose the canonical output format, handling of unrecognized values, case sensitivity, or error 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?
The description is a single, compact sentence that front-loads the purpose and immediately provides concrete examples. There is no redundant wording or unnecessary repetition of schema 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 single-parameter tool, the description is usable, but it is not fully complete. An agent can confidently pass a boolean-like string, yet it will not know what canonical form will be returned or what happens for invalid input, especially with no output schema or annotations.
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 says input is a string; the description adds valuable examples of accepted representations like yes/no, on/off, and 1/0. However, with 0% schema coverage, it should also clarify normalization direction and edge cases, which it does not.
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 names a specific operation ('Normalize') and a specific resource ('boolean representations'), and gives concrete example inputs. This makes it clearly distinguishable from siblings like normalize-decimal and normalize-whitespace.
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 the tool should be used when input is a boolean-like string such as yes/no or 1/0. However, it does not explicitly say when not to use it or how to choose among sibling normalization tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
normalize-decimalAInspect
Normalize common US/EU decimal representations to a dot-decimal string. Ambiguous single separators followed by three digits are flagged.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses a non-obvious rule for ambiguous single separators followed by three digits, but uses the vague term 'flagged' without explaining the resulting behavior (error, marker, or special output). With no annotations, this ambiguity is a notable gap in transparency.
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 with zero filler: the first sentence front-loads the core transformation, and the second adds a relevant edge-case behavior. Every clause contributes meaning.
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 the main operation and one edge case, but it leaves unresolved the meaning of 'flagged' and does not describe return format or error behavior. Since there is no output schema and no annotations, these omissions limit the agent's ability to handle all outcomes correctly.
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 0% schema description coverage, the description compensates by indicating the input is a US/EU decimal representation and that normalization applies to it. It does not explicitly name the parameter or provide examples, but the semantic intent is inferable and much richer 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?
States a specific verb ('Normalize') and resource ('common US/EU decimal representations') with a defined output ('dot-decimal string'). This clearly differentiates it from siblings like normalize-boolean and normalize-whitespace, which target different data types.
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 decimal strings need conversion to dot-decimal format. However, it provides no explicit mention of when to use this tool over alternatives or any exclusions, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
normalize-whitespaceAInspect
Collapse repeated whitespace to one space and trim leading/trailing whitespace.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden and clearly states what will happen: repeated whitespace becomes one space and leading/trailing whitespace is removed. It could be more specific about which whitespace characters are included, but the core behavior is transparent.
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 efficient sentence with no filler. The primary action is front-loaded, and every word contributes to understanding the tool's behavior.
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 string transformation with no output schema and no annotations, the description is nearly complete. It omits only minor edge-case details such as the exact definition of whitespace, but the core input/output contract is clear.
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%, but the description effectively compensates by explaining exactly how the single 'input' string will be modified. It adds meaning beyond the plain string/maxLength schema, even though it does not explicitly name the parameter.
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 states a specific verb ('collapse repeated whitespace to one space and trim') and a clear resource (the input string). It unambiguously distinguishes this tool from siblings like detect-delimiter or normalize-boolean, which operate on different data aspects.
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 intended use is implied: call this when whitespace needs to be normalized. However, the description does not explicitly state when to prefer this over siblings or mention any exclusions, leaving the agent to infer the context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
safe-filenameAInspect
Convert a string into a Windows-safe filename, including reserved device-name protection.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden and does a reasonable job: it discloses the key transformation target and explicitly calls out reserved device-name protection. It does not specify details like which characters are replaced or how trailing dots/spaces are handled, but for a single-purpose conversion utility the main behavioral surprise is disclosed.
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 contains the core purpose and the most important edge-case behavior with no filler. Highly 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 simple one-parameter transformation tool with no output schema, the description covers the essential context: input, target platform, and a critical safeguard. Minor gaps such as return-value format and exact sanitization behavior would improve completeness, but the tool's low complexity makes this sufficient for correct invocation.
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 refers to 'a string' as the conversion input, matching the single 'input' parameter, and hints that the input may include reserved device names. It does not add meaningful constraint details beyond the schema, but with only one self-explanatory parameter the semantics are adequate.
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 states a specific verb ('Convert') and resource ('a string into a Windows-safe filename'), with a distinctive edge case ('reserved device-name protection'). It is clearly differentiated from the normalize-* siblings, which operate on different data concerns.
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's intended use is clear: any time a Windows-safe filename is needed. It does not name alternatives or explicitly state when not to use it, but sibling tools are sufficiently different that the decision is obvious from the purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
- First observed
detect-delimiter - First observed
normalize-boolean - First observed
normalize-decimal - First observed
normalize-whitespace - First observed
safe-filename
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Standardize, reshape, and normalize messy data — CSV, Excel, Parquet, S3, databases.
- SnipgetOAuthai.snipget
300+ deterministic data utilities for AI agents: validate, normalize, parse, match, redact.
Five deterministic micro-tools for AI-agent data pipelines: clean, dedupe, normalize, score, detect.
Clean FDA regulatory data: company resolution, facilities, recalls, inspections, approvals.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides deterministic, stateless tools for common data work including JSON, CSV, text, encoding, hashing, IDs, date/time, and number statistics.MIT

Agent Toolsofficial
AlicenseNot gradedqualityCmaintenanceProvides deterministic tools for transforming, formatting, and inspecting structured data for AI agents.519Apache 2.0- AlicenseAqualityCmaintenanceProvides AI agents with data validation, transformation, and normalization capabilities, including JSON schema validation, CSV processing, data normalization, text cleaning, and dataset merging.571MIT
- FlicenseNot gradedqualityDmaintenanceEnables data-quality workflows by applying named, deterministic transformations to records and generating replayable lineage with content hashes, so users can verify that cleaned results follow exactly from raw inputs.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a clearly separate concern: delimiter detection, three distinct normalization tasks, and filename sanitization. There is no realistic confusion between them, even though several share a normalize- prefix.
Most tools follow a verb-noun kebab-case pattern such as detect-delimiter and normalize-whitespace. safe-filename slightly deviates because it is adjective-noun rather than a command, but the overall convention is still mostly predictable.
Five tools is a compact, well-scoped set for a data-cleaning utility server. Each tool has a clear purpose and none feel redundant or excessive.
The covered tasks are useful and coherent, but the 'Internet Janitor' domain implies a broader cleaning toolkit. Common janitorial operations like normalizing line endings, handling encodings, or normalizing dates are missing, leaving noticeable gaps despite the solid core.