Skip to main content
Glama
BRNDMK

brandomica-mcp-server

Brandomica Lab MCP 服务器

brandomica-mcp-server MCP 服务器 在 Cursor 中安装

一个用于检查品牌名称在域名、社交账号、商标、应用商店和 SaaS 渠道中可用性的 MCP (Model Context Protocol) 服务器。

Brandomica Lab 提供支持。

安装

远程(无需安装)

通过流式 HTTP 直接连接 — 无需安装:

https://www.brandomica.com/mcp

Claude Code

claude mcp add brandomica -- npx brandomica-mcp-server

Claude Desktop

添加到您的 Claude Desktop 配置文件 (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "brandomica": {
      "command": "npx",
      "args": ["brandomica-mcp-server"]
    }
  }
}

OpenClaw

添加到您的 OpenClaw 配置文件 (openclaw.json):

{
  "mcpServers": {
    "brandomica": {
      "command": "npx",
      "args": ["brandomica-mcp-server"]
    }
  }
}

或者从 ClaWHub 安装该技能:

clawhub install brandomica

自定义 API URL

指向本地开发服务器或自定义部署:

{
  "mcpServers": {
    "brandomica": {
      "command": "npx",
      "args": ["brandomica-mcp-server"],
      "env": {
        "BRANDOMICA_API_URL": "http://localhost:3000"
      }
    }
  }
}

Related MCP server: BrandSnap MCP

工具

工具

描述

brandomica_check_all

全面品牌检查 — 域名、社交、商标、应用商店、SaaS + 评分

brandomica_assess_safety

快速安全评估输出(总体风险、0-100 安全评分、阻碍因素、建议操作)

brandomica_filing_readiness

可直接决策的注册准备情况摘要(结论、按司法管辖区/类别划分的顶级冲突、证据链接、置信度差距)

brandomica_compare_brands

并排对比 2-5 个品牌名称(结果保持请求顺序 + 推荐建议)

brandomica_brand_report

完整品牌安全报告 — 用于尽职调查的带时间戳证据文档

brandomica_check_domains

6 个顶级域名 (TLD) 的可用性及价格查询

brandomica_check_social

社交账号可用性(GitHub、Twitter/X、TikTok、LinkedIn、Instagram)

brandomica_check_trademarks

商标注册库搜索(USPTO、EUIPO)

brandomica_check_appstores

App Store 和 Google Play 搜索

brandomica_check_google

网络存在感 — Google 搜索竞争对手重叠检测

brandomica_check_saas

包注册表及 SaaS 可用性(npm、PyPI、crates.io、RubyGems、NuGet、Homebrew、Docker Hub、ProductHunt)

brandomica_batch_check

一次调用检查 2-10 个品牌名称,按评分排序

所有工具均接受 brand_name 参数(小写字母、数字、连字符)。brandomica_check_allbrandomica_assess_safetybrandomica_filing_readiness 还接受可选的 mode 参数(quickfull)。brandomica_compare_brands 接受一个 brand_names 数组(2-5 个)。brandomica_batch_check 接受一个 brand_names 数组(2-10 个)以及可选的 mode 参数(quickfull)。

示例

1. 快速可用性检查

"检查品牌名称 'acme' 是否可用"

Claude 调用 brandomica_check_all 并返回结构化的 JSON 响应,包含 0-10 的可用性评分、0-100 的安全评分、域名价格、社交账号、商标冲突等信息。

2. 安全优先流程

"首先评估 'acme' 的安全性。如果风险为中等或高,则以完整模式运行注册准备情况检查,并总结带有证据链接的顶级冲突。"

Claude 使用三步工作流:

  1. brandomica_assess_safety 进行快速风险决策(总体风险等级、0-100 安全评分、阻碍因素、建议操作)

  2. brandomica_filing_readiness 获取决策级注册输出(结论、按司法管辖区/类别划分的顶级冲突、证据链接、置信度差距)

  3. 仅在需要更深入的原始证据时调用 brandomica_check_all

3. 批量对比

"我正在为一款开发者工具在 'nexlayer'、'buildkraft' 和 'codelaunch' 之间做选择。对比这三个名称并推荐最安全的一个。"

Claude 使用所有三个名称调用 brandomica_compare_brands。每个候选名称都会获得完整的可用性评分和安全评估。响应包含按请求顺序排列的结果,以及突出显示最高分候选者的推荐建议。

自动调用规则

将此内容添加到您项目的 CLAUDE.md 中,以便在命名会话期间自动检查品牌名称:

When brainstorming or suggesting product names, brand names, or startup names, always run brandomica_assess_safety on each candidate before recommending. If any show medium or high risk, follow up with brandomica_filing_readiness.

开发

cd mcp-server
npm install
npm run build
node dist/index.js

使用 MCP Inspector 进行测试:

npx @modelcontextprotocol/inspector node dist/index.js

故障排除

Claude Desktop 中“工具未显示”

  • 验证您的配置文件路径:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • 验证 JSON 语法(尾随逗号、缺失引号)

  • 编辑配置后重启 Claude Desktop

  • 检查 npx brandomica-mcp-server 在您的终端中是否能无错误运行

Claude Code 中“工具未显示”

# Verify the server is registered
claude mcp list

# Re-add if missing
claude mcp add brandomica -- npx brandomica-mcp-server

npx 挂起或超时

  • 清除 npx 缓存:npx clear-npx-cache 然后重试

  • 改为全局安装:npm install -g brandomica-mcp-server 然后使用 brandomica-mcp-server 作为命令(代替 npx brandomica-mcp-server

  • 检查网络连接:npm ping

工具返回错误或空结果

  • 速率限制 (429): 远程端点允许每分钟 30 次请求。等待 60 秒后重试。

  • 超时: 部分检查(域名、商标)会调用外部 API。瞬时故障通常在重试后解决。

  • null 社交账号: null 表示该平台未被搜索提供商索引 — 这并不意味着账号可用或已被占用。只有 true/false 是确定的。

远程端点 (HTTPS) 无响应

  • 验证 URL:https://www.brandomica.com/mcp

  • 检查服务状态:https://www.brandomica.com/status

  • 远程端点使用流式 HTTP 传输 — 确保您的 MCP 客户端支持该协议

使用自定义 API URL

设置 BRANDOMICA_API_URL 以指向本地开发服务器或自定义部署:

BRANDOMICA_API_URL=http://localhost:3000 npx brandomica-mcp-server

使用 MCP Inspector 调试

npx @modelcontextprotocol/inspector npx brandomica-mcp-server

打开浏览器 UI,您可以在其中交互式调用每个工具并检查 JSON 响应。

隐私政策

此服务器连接到 Brandomica Lab API (brandomica.com) 以执行品牌名称检查。查看我们的完整隐私政策:https://www.brandomica.com/privacy

  • 无需用户账户或身份验证

  • 查询数据在内存中缓存 5-30 分钟,随后丢弃

  • 不收集、存储或共享个人数据

  • 所有检查均使用公共 API 和注册库

支持

许可证

MIT

Latest Blog Posts

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/BRNDMK/brandomica-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server