GoAI Moat Decision-Maker Lookup
Find B2B decision makers and verify work emails.
Should I use this
Quality & Safety
Findings (1)
- LOWin get_balance
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"decision-maker-lookup": {
"url": "https://contacts.mcp.goaimoat.com/mcp"
}
}
}Remote endpoints
https://contacts.mcp.goaimoat.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (3)
🟢find_decision_makers(company, title, department, location, limit)
免费搜索目标企业的决策者名单(返回存在性 flag,不扣费)。 底层:`monid run -p hunterio -e /multi-domain-search --query '{...}'`(免费端点)。 返回每行带 decision_maker / phone_number_exists / linkedin_exists 等 flag, 先筛出真正的决策者,再对选中的行调用 reveal_work_email()(付费)。
Input Schema
{
"type": "object",
"properties": {
"company": {
"type": "string",
"description": "目标企业域名或名称(如 \"example.com\")。"
},
"title": {
"default": "",
"type": "string",
"description": "职位关键词(如 \"CEO\" / \"marketing\"),可选。"
},
"department": {
"default": "sales",
"type": "string",
"description": "部门(sales/marketing/engineering...,默认 sales)。"
},
"location": {
"default": "",
"type": "string",
"description": "地区(如 \"US\" / \"Shenzhen\"),可选。"
},
"limit": {
"default": 20,
"type": "integer",
"description": "最多返回行数(默认 20)。"
}
},
"required": [
"company"
],
"additionalProperties": false
}Output Schema
{
"type": "object",
"additionalProperties": true
}🟢reveal_work_email(reveal_handle, name, company)
付费 reveal:把选定的决策者行变成一条带验证状态的邮箱地址(每行扣一次费)。 两种用法: - 传 reveal_handle(来自 find_decision_makers 结果里的 handle) - 或传 name + company,用 contactout 二次核验
Input Schema
{
"type": "object",
"properties": {
"reveal_handle": {
"default": "",
"type": "string",
"description": "搜索结果的 reveal handle(优先)。"
},
"name": {
"default": "",
"type": "string",
"description": "决策者姓名(与 company 搭配,作为 contactout 核验的备选)。"
},
"company": {
"default": "",
"type": "string",
"description": "企业名称/域名。"
}
},
"additionalProperties": false
}Output Schema
{
"type": "object",
"additionalProperties": true
}🟢get_balance
查询 Monid 账户余额(`monid balance`)。
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}Output Schema
{
"type": "object",
"additionalProperties": true
}Community
Evidence