The Brandomica Lab MCP Server provides tools for checking brand name availability and safety across multiple channels:
Full Brand Check (
brandomica_check_all): Comprehensive check across domains, social handles, trademarks, app stores, and SaaS channels, returning a 0-10 availability score and 0-100 safety score. Supportsquickorfullmodes.Brand Safety Assessment (
brandomica_assess_safety): Fast risk analysis returning overall risk level, safety score, blockers, and recommended actions.Filing Readiness Summary (
brandomica_filing_readiness): Decision-ready trademark filing analysis with verdict, top conflicts by jurisdiction/class, evidence links, and confidence gaps.Compare Brand Names (
brandomica_compare_brands): Side-by-side comparison of 2-5 brand name candidates with scores and a recommendation for the safest option.Brand Safety Report (
brandomica_brand_report): Full timestamped due diligence report including linguistic/phonetic screening, domain costs, and trademark filing estimates.Domain Availability (
brandomica_check_domains): Check availability across 6 TLDs (.com, .io, .co, .app, .dev, .ai) with purchase and renewal pricing.Social Handle Availability (
brandomica_check_social): Check handles on GitHub, Twitter/X, TikTok, LinkedIn, and Instagram.Trademark Search (
brandomica_check_trademarks): Search USPTO and EUIPO registries for existing registrations.App Store Search (
brandomica_check_appstores): Search iOS App Store and Google Play for competing apps.Web Presence Check (
brandomica_check_google): Detect competitor overlap via Google Search.Package Registry & SaaS Availability (
brandomica_check_saas): Check availability on npm, PyPI, crates.io, RubyGems, NuGet, Homebrew, Docker Hub, and ProductHunt.Batch Brand Check (
brandomica_batch_check): Check 2-10 brand names concurrently in a single call, results sorted by score.
Most tools accept a brand_name parameter (lowercase, numbers, hyphens, 1-63 characters) and can connect via remote HTTP, Claude Desktop, Claude Code, or OpenClaw.
Checks for brand name availability and identifies potential conflicts with existing applications in the Apple App Store.
Checks for brand name availability and existing repositories on Docker Hub.
Verifies the availability of brand names for social handles and package names on GitHub.
Provides web presence analysis and competitor overlap detection through Google Search.
Searches the Google Play Store to check for brand name availability and existing applications.
Checks for brand name availability within the Homebrew package manager.
Verifies the availability of brand-specific social handles on Instagram.
Checks for package name availability on the npm registry.
Checks for package name availability on the NuGet registry.
Checks for package name availability on the Python Package Index (PyPI).
Checks for brand name availability within the RubyGems package registry.
Verifies the availability of brand-specific social handles on TikTok.
Brandomica Lab MCP Server
An MCP (Model Context Protocol) server for checking brand name availability across domains, social handles, trademarks, app stores, and SaaS channels.
Powered by Brandomica Lab.
Installation
Remote (no install)
Connect directly via streamable HTTP — no install needed:
https://www.brandomica.com/mcpClaude Code
claude mcp add brandomica -- npx brandomica-mcp-serverClaude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"brandomica": {
"command": "npx",
"args": ["brandomica-mcp-server"]
}
}
}OpenClaw
Add to your OpenClaw config (openclaw.json):
{
"mcpServers": {
"brandomica": {
"command": "npx",
"args": ["brandomica-mcp-server"]
}
}
}Or install the skill from ClaWHub:
clawhub install brandomicaCustom API URL
To point at a local dev server or custom deployment:
{
"mcpServers": {
"brandomica": {
"command": "npx",
"args": ["brandomica-mcp-server"],
"env": {
"BRANDOMICA_API_URL": "http://localhost:3000"
}
}
}
}Tools
Tool | Description |
| Full brand check — domains, social, trademarks, app stores, SaaS + score |
| Fast safety-only output (overall risk, 0-100 safety score, blockers, actions) |
| Decision-ready filing summary (verdict, top conflicts by jurisdiction/class, evidence links, confidence gaps) |
| Compare 2-5 brand names side-by-side (results keep request order + recommendation) |
| Full brand safety report — timestamped evidence document for due diligence |
| Domain availability across 6 TLDs with pricing |
| Social handle availability (GitHub, Twitter/X, TikTok, LinkedIn, Instagram) |
| Trademark registry search (USPTO, EUIPO) |
| App Store and Google Play search |
| Web presence — Google Search competitor overlap detection |
| Package registry & SaaS availability (npm, PyPI, crates.io, RubyGems, NuGet, Homebrew, Docker Hub, ProductHunt) |
| Check 2-10 brand names in one call, sorted by score |
All tools accept a brand_name parameter (lowercase letters, numbers, hyphens). brandomica_check_all, brandomica_assess_safety, and brandomica_filing_readiness also accept an optional mode parameter (quick or full). brandomica_compare_brands accepts a brand_names array (2-5). brandomica_batch_check accepts a brand_names array (2-10) and an optional mode parameter (quick or full).
Examples
1. Quick availability check
"Check if the brand name 'acme' is available"
Claude calls brandomica_check_all and returns a structured JSON response with a 0-10 availability score, 0-100 safety score, domain pricing, social handles, trademark conflicts, and more.
2. Safety-first flow
"Assess safety for 'acme' first. If risk is medium or high, run filing readiness in full mode and summarize top conflicts with evidence links."
Claude uses a three-step workflow:
brandomica_assess_safetyfor a fast risk decision (overall risk level, 0-100 safety score, blockers, recommended actions)brandomica_filing_readinessfor decision-grade filing output (verdict, top conflicts by jurisdiction/class, evidence links, confidence gaps)brandomica_check_allonly when deeper raw evidence is needed
3. Batch comparison
"I'm choosing between 'nexlayer', 'buildkraft', and 'codelaunch' for a developer tool. Compare all three and recommend the safest option."
Claude calls brandomica_compare_brands with all three names. Each candidate gets a full availability score and safety assessment. The response includes results in request order plus a recommendation highlighting the highest-scoring candidate.
Development
cd mcp-server
npm install
npm run build
node dist/index.jsTest with MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.jsTroubleshooting
"Tools not appearing" in Claude Desktop
Verify your config file path:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Validate JSON syntax (trailing commas, missing quotes)
Restart Claude Desktop after editing config
Check that
npx brandomica-mcp-serverruns without errors in your terminal
"Tools not appearing" in Claude Code
# Verify the server is registered
claude mcp list
# Re-add if missing
claude mcp add brandomica -- npx brandomica-mcp-servernpx hangs or times out
Clear the npx cache:
npx clear-npx-cachethen retryInstall globally instead:
npm install -g brandomica-mcp-serverthen usebrandomica-mcp-serveras the command (instead ofnpx brandomica-mcp-server)Check network connectivity:
npm ping
Tool returns an error or empty results
Rate limited (429): The remote endpoint allows 30 requests/minute. Wait 60 seconds and retry.
Timeout: Some checks (domains, trademarks) call external APIs. Transient failures resolve on retry.
nullsocial handles:nullmeans the platform wasn't indexed by the search provider — it does not mean the handle is available or taken. Onlytrue/falseis definitive.
Remote endpoint (HTTPS) not responding
Verify the URL:
https://www.brandomica.com/mcpCheck service status:
https://www.brandomica.com/statusThe remote endpoint uses streamable HTTP transport — ensure your MCP client supports it
Using a custom API URL
Set BRANDOMICA_API_URL to point at a local dev server or custom deployment:
BRANDOMICA_API_URL=http://localhost:3000 npx brandomica-mcp-serverDebugging with MCP Inspector
npx @modelcontextprotocol/inspector npx brandomica-mcp-serverOpens a browser UI where you can call each tool interactively and inspect JSON responses.
Privacy Policy
This server connects to the Brandomica Lab API (brandomica.com) to perform brand name checks. See our full privacy policy: https://www.brandomica.com/privacy
No user accounts or authentication required
Query data cached in-memory for 5–30 minutes, then discarded
No personal data collected, stored, or shared
All checks use public APIs and registries
Support
GitHub Issues — bug reports, feature requests
Email: support@brandomica.com
Security vulnerabilities: security@brandomica.com (private reports only)
Security policy: see
SECURITY.mdand/.well-known/security.txt
License
MIT