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/mcp
Claude Code
claude mcp add brandomica -- npx brandomica-mcp-server
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"brandomica": {
"command": "npx",
"args": ["brandomica-mcp-server"]
}
}
}
Custom 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 |
|---|---|
brandomica_check_all |
Full brand check — domains, social, trademarks, app stores, SaaS + score |
brandomica_assess_safety |
Fast safety-only output (overall risk, 0-100 safety score, blockers, actions) |
brandomica_filing_readiness |
Decision-ready filing summary (verdict, top conflicts by jurisdiction/class, evidence links, confidence gaps) |
brandomica_compare_brands |
Compare 2-5 brand names side-by-side (results keep request order + recommendation) |
brandomica_brand_report |
Full brand safety report — timestamped evidence document for due diligence |
brandomica_check_domains |
Domain availability across 6 TLDs with pricing |
brandomica_check_social |
Social handle availability (GitHub, Twitter/X, TikTok, LinkedIn, Instagram) |
brandomica_check_trademarks |
Trademark registry search (USPTO, EUIPO) |
brandomica_check_appstores |
App Store and Google Play search |
brandomica_check_google |
Web presence — Google Search competitor overlap detection |
brandomica_check_saas |
Package registry & SaaS availability (npm, PyPI, crates.io, RubyGems, NuGet, Homebrew, Docker Hub, ProductHunt) |
brandomica_batch_check |
Check 2-50 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-50) 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
git clone https://github.com/BRNDMK/brandomica-mcp-server.git
cd brandomica-mcp-server
npm install
npm run build
node dist/index.js
Test with MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js
Support
- GitHub Issues — bug reports, feature requests
- Email: [email protected]
License
MIT