← Back to Skills Marketplace
thegdsks

Glin Profanity MCP

by thegdsks · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2066
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install glin-profanity-mcp
Description
MCP server providing profanity detection tools for AI assistants. Use when reviewing batches of user content, auditing comments for moderation reports, analyzing text for profanity before publishing, or when AI needs content moderation capabilities during workflows.
README (SKILL.md)

Glin Profanity MCP Server

MCP (Model Context Protocol) server that provides profanity detection as tools for AI assistants like Claude Desktop, Cursor, and Windsurf.

Best for: AI-assisted content review workflows, batch moderation, audit reports, and content validation before publishing.

Installation

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "glin-profanity": {
      "command": "npx",
      "args": ["-y", "glin-profanity-mcp"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "glin-profanity": {
      "command": "npx",
      "args": ["-y", "glin-profanity-mcp"]
    }
  }
}

Available Tools

Core Detection

Tool Description
check_profanity Check text for profanity with detailed results
censor_text Censor profanity with configurable replacement
batch_check Check multiple texts at once (up to 100)
validate_content Get safety score (0-100) with action recommendation

Analysis

Tool Description
analyze_context Context-aware analysis (medical, gaming, etc.)
detect_obfuscation Detect leetspeak and Unicode tricks
explain_match Explain why text was flagged
compare_strictness Compare detection across strictness levels

Utilities

Tool Description
suggest_alternatives Suggest clean replacements
analyze_corpus Analyze up to 500 texts for stats
create_regex_pattern Generate regex for custom detection
get_supported_languages List all 24 supported languages

User Tracking

Tool Description
track_user_message Track messages for repeat offenders
get_user_profile Get user's moderation history
get_high_risk_users List users with high violation rates

Example Prompts

Content Review

"Check these 50 user comments and tell me which ones need moderation"
"Validate this blog post before publishing - use high strictness"
"Analyze this medical article with medical domain context"

Batch Operations

"Batch check all messages in this array and return only flagged ones"
"Generate a moderation audit report for these comments"

Understanding Flags

"Explain why 'f4ck' was detected as profanity"
"Compare strictness levels for this gaming chat message"

Content Cleanup

"Suggest professional alternatives for this flagged text"
"Censor the profanity but preserve first letters"

When to Use

Use MCP server when:

  • AI assists with content review workflows
  • Batch checking user submissions
  • Generating moderation reports
  • Content validation before publishing
  • Human-in-the-loop moderation

Use core library instead when:

  • Automated real-time filtering (hooks/middleware)
  • Every message needs checking without AI involvement
  • Performance-critical applications (\x3C 1ms response)

Resources

Usage Guidance
This skill looks like a reasonable profanity-moderation tool, but exercise caution before installing. The SKILL.md instructs the agent to run 'npx -y glin-profanity-mcp', which will download and execute code from npm/GitHub at runtime — verify the npm package and repository (look at the exact package contents and history). Ask the author where user tracking data is stored, what identifiers are collected, retention/ deletion policies, and whether any external endpoints are contacted. Prefer a pinned package version (not 'npx -y' which fetches the latest), run it in a sandbox first, and avoid enabling autonomous invocation until you've reviewed the source and data-handling details.
Capability Analysis
Type: OpenClaw Skill Name: glin-profanity-mcp Version: 1.0.0 The skill is suspicious due to the advertised 'User Tracking' capabilities in SKILL.md, which include tools like `track_user_message`, `get_user_profile`, and `get_high_risk_users`. These tools imply the collection and storage of sensitive user data (messages, moderation history, violation rates), posing a significant privacy risk. Additionally, the installation instructions in SKILL.md use `npx -y glin-profanity-mcp`, which executes an external npm package without user confirmation, introducing a supply chain risk by allowing arbitrary code execution from an untrusted source.
Capability Assessment
Purpose & Capability
Name/description and the listed tools (profanity detection, censoring, batch operations, context analysis) are coherent with a moderation MCP server. However, the SKILL.md's installation instructions require running 'npx' to fetch the npm package, yet the skill metadata lists no required binaries — that's an omission. Also, features under 'User Tracking' (track_user_message, get_user_profile, get_high_risk_users) imply persistent storage or identifiers; the skill declares no config paths, storage backends, or credentials, which is inconsistent with those capabilities.
Instruction Scope
SKILL.md instructs the agent to add an MCP entry that runs 'npx -y glin-profanity-mcp'. That will cause the agent environment to fetch and execute remote npm package code at runtime. The instructions do not specify where tracked user data is stored, what identifiers are required, retention policies, or where telemetry/requests are sent — the tracking utilities broaden scope without operational detail. There are no instructions that read arbitrary local files, but the guidance is vague about data flows and persistence.
Install Mechanism
There is no formal install spec in the metadata, but the provided installation steps rely on npx, which downloads and runs the package from npm at runtime. Using 'npx -y' implicitly executes remotely fetched code and accepts defaults; that elevates risk compared to a packaged, audited install. The SKILL.md cites npm and GitHub URLs for the project, which helps traceability, but npx-based execution still allows remote code to run and to change if the npm package is updated.
Credentials
The skill declares no required environment variables or credentials, which would be reasonable for a purely local tool — but the presence of user-tracking tools implies some form of storage, identifiers, or external service (DB, analytics, or remote API). The absence of declared config paths, storage endpoints, or credentials (for example, for a database) is a mismatch. There is also no privacy or data-handling guidance in the SKILL.md.
Persistence & Privilege
always is false (good). The skill runs via npx when invoked by the agent; it does not request explicit persistent platform privileges in the metadata. However, because the runtime uses npx to fetch and execute remote code and the skill provides user-tracking features, the effective blast radius is higher if the agent invokes it autonomously (default behavior). Consider limiting autonomous invocation until you audit the package.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install glin-profanity-mcp
  3. After installation, invoke the skill by name or use /glin-profanity-mcp
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
glin-profanity-mcp v1.0.0 - Initial release of the MCP server for profanity detection. - Provides tools for batch content review, moderation audits, and pre-publishing validation. - Includes context-aware detection, obfuscation handling, and language support for 24 languages. - Supports user tracking and moderation history features. - Integrates with Claude Desktop, Cursor, and similar AI assistant workflows.
Metadata
Slug glin-profanity-mcp
Version 1.0.0
License
All-time Installs 2
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Glin Profanity MCP?

MCP server providing profanity detection tools for AI assistants. Use when reviewing batches of user content, auditing comments for moderation reports, analyzing text for profanity before publishing, or when AI needs content moderation capabilities during workflows. It is an AI Agent Skill for Claude Code / OpenClaw, with 2066 downloads so far.

How do I install Glin Profanity MCP?

Run "/install glin-profanity-mcp" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Glin Profanity MCP free?

Yes, Glin Profanity MCP is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Glin Profanity MCP support?

Glin Profanity MCP is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Glin Profanity MCP?

It is built and maintained by thegdsks (@thegdsks); the current version is v1.0.0.

💬 Comments