un-default
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@un-defaultScan this copy for exclusive language and propose changes."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Un-Default
One thoughtful-language check for every way you build.
Formerly Anti-Default. Same tool — the name shifted so it reads as undoing defaults, not opposing people. Old URLs under
darkai.ca/anti-defaultredirect here.npx anti-defaultstill works as an alias fornpx -y anti-default.
Un-Default reviews copy, docs, UI strings, and live pages for colonial defaults, gendered assumptions, ableist metaphors, and documented dogwhistles. It explains what it noticed and offers clearer alternatives.
No account. No AI required for matching. Open rules you can tune.
After Claude / Cursor writes UI copy
One command — skill + MCP + PR check. This is the habit that sticks:
npx -y anti-default initOr install the Claude Code plugin from this repo’s marketplace:
claude plugin marketplace add NomadBuilder/anti-default
claude plugin install un-default@un-defaultPaste-ready MCP JSON and Claude Project instructions:
https://darkai.ca/un-default/for-agents/
Directory checklist: docs/PUBLISH-DIRECTORIES.md
Paste MCP config (Cursor · Claude Desktop · Claude Code)
{
"mcpServers": {
"un-default": {
"command": "npx",
"args": ["-y", "anti-default", "mcp"]
}
}
}Host | Where it goes |
Cursor |
|
Claude Desktop | Settings → Developer → Edit Config → |
Claude Code | Plugin marketplace (above), or |
Tools: un_default_scan · un_default_fix · un_default_feedback
Related MCP server: Accessibility MCP Server
Add it in under a minute
npx -y anti-default .That is the whole local setup. It prints findings and exits non-zero on clear hits. Ambiguous or quoted matches stay advisory.
To pin it in a team project:
npm install --save-dev anti-defaultWant the complete project setup?
npx -y anti-default initinit adds an ignore file, changed-files GitHub workflow, Cursor + Claude
skills, .cursor/mcp.json + .mcp.json, Claude/Cursor after-edit hooks,
CLAUDE.md instructions, and inclusive-check / inclusive-fix scripts.
Existing files are never overwritten. Hooks surface hard findings back to the
agent after Edit/Write so Claude keeps checking even when nobody remembers.
AI-copy habit (definition of done)
npx -y anti-default fix . # safe 1:1 autofixes only
npx -y anti-default . # remaining findingsAgents should not mark UI/docs work done until hard findings are cleared or explicitly marked fine in context. Soft/coded hits stay advisory.
# Preview autofixes without writing
npx -y anti-default fix . --dry-run
# Intentional language — suppress locally + share structured feedback
npx -y anti-default feedback --kind fine_in_context \
--rule guys-generic --match "guys" --context "…snippet…" \
--note "Quoted lyric" --open-issueMCP server
npx -y anti-default mcpSee for-agents for host-specific paste steps.
Scan the way you work
# Paths
npx -y anti-default ./src ./docs README.md
# CI formats
npx -y anti-default . --format json -o report.json
npx -y anti-default . --format sarif -o results.sarif
# Batch URLs — no Review UI
npx -y anti-default --urls https://example.com https://example.com/about
npx -y anti-default --urls-file urls.txt --format json
# Only files changed in this branch
npx -y anti-default . --changed-from origin/main
# Keep existing findings quiet; report only new ones
npx -y anti-default baseline .Ignore what doesn’t matter
Commit a .undefaultignore so day-two noise doesn’t drown the team (example):
node_modules/
vendor/
*.min.js
rule:guys # turn off one rule for this repoGitHub Action
Keep inclusive language in the PR loop. This scans only changed files, fails on clear new findings, and leaves a checklist comment:
# .github/workflows/un-default.yml
name: Un-Default
on: [pull_request]
permissions:
contents: read
pull-requests: write
security-events: write
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: NomadBuilder/anti-default@v1
with:
changed-from: ${{ github.event.pull_request.base.sha }}
format: json
comment-on-pr: "true"
# telemetry: false # opt out of anonymous action_run pingsPrefer SARIF for Code Scanning? Set format: sarif and output-file: un-default.sarif. Full inputs: action.yml.
Anonymous Action pings (no repo name or findings) feed public totals at darkai.ca/un-default/usage. Badge:
Agent skill
npx -y anti-default init installs .cursor/skills/un-default/SKILL.md — the
definition-of-done workflow for AI-generated copy: fix → scan → ask or
feedback → re-scan.
Source: skills/un-default/SKILL.md ·
feedback model: feedback/README.md
Use it as a library
The npm package has no runtime dependencies and exposes the same analyzer used by the CLI and web app:
import { analyzeText, LANGUAGE_RULES } from "anti-default";
const result = analyzeText("Welcome, you guys.");
console.log(result.findings);Chrome extension
Same rules as the app — on the page you’re already looking at.
Runs offline from a bundled rule list. No tracking. No AI calls.
Dev / unpacked: npm run extension:pack → Load unpacked → extension/ · details in extension/README.md
Web app — try, learn, tune
Review — paste, upload, or scan a URL; export Markdown, CSV, or a checklist
Swap — turn one phrase into clearer alternatives
Dogwhistles — learn what a phrase can signal and when context matters
Rules — tune the open rule catalog for your project
npm install && npm run dev # localhost:3000Why teams reach for it
Before publish — catch defaults in marketing, docs, and product copy
In the PR — Action + SARIF/JSON so machines and humans both get a signal
On the live page — extension for writers who never open a terminal
Without a lecture — suggestions are invitations; context always wins
Every suggestion cites the style guides and references behind it → /sources
Customize & self-host
Tune in the UI: /rules · edit code:
src/lib/rules.tsPractice corpus:
npm run corpusStatic export:
npm run build→out/
Subpath (DarkAI):STATIC_EXPORT=true BASE_PATH=/un-default npm run build
Production lives at darkai.ca/un-default and is also vendored in DarkAI.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityCmaintenanceL1-aware grammar, style, translation & tone tools with 70 local rules. Zero API keys needed.4
- AlicenseAqualityCmaintenanceProvides conversational, actionable accessibility testing for AI agents, including auditing, prioritization, and code-level fixes.2254MIT
- AlicenseAqualityAmaintenanceEnables AI assistants and developers to analyze code for language-specific best practices and idiomatic patterns across programming languages, CI automation, and configuration formats.162MIT
- Alicense-qualityBmaintenanceEnables AI-first accessibility testing by investigating pages, explaining findings, and applying fixes via natural language, integrated with Playwright tests and local or cloud AI models.MIT
Related MCP Connectors
Scan URLs for WCAG 2.1 violations, generate AI fixes, and produce VPAT 2.5 compliance reports.
Deterministic axe-core accessibility scans (WCAG 2.1 AA, EN 301 549, PDF/UA) via your account.
Prose linter + AI-slop detector: weasel words, passive voice, hedging, and research-cited AI tells
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NomadBuilder/anti-default'
If you have feedback or need assistance with the MCP directory API, please join our Discord server