# 反洗钱特别预防措施名单检索

反洗钱名单检索，在线检索反洗钱特殊预防措施名单。产品整合了联合国安理会制裁名单数据源，覆盖个人、实体、国家三类风险名单，提供快速、精准的洗钱风险筛查能力。

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add gsyu-mcp-server/g01

# Browse available tools
npx -y @smithery/cli@latest tool list gsyu-mcp-server/g01

# Get full schema for a tool
npx -y @smithery/cli@latest tool get gsyu-mcp-server/g01 searchAll

# Call a tool
npx -y @smithery/cli@latest tool call gsyu-mcp-server/g01 searchAll '{}'
```

## Direct MCP Connection

Endpoint: `https://g01--gsyu-mcp-server.run.tools`

**Required config:**
- `X-API-Key` (header) — 用户身份认证

## Tools (3)

- `searchAll` — 条件搜索风险名单，根据多条件搜索可以根据姓名、性别、国籍、证件号、国家名称等多种条件进行搜索。返回结果按类型分组：person(个人)、entity(实体)、country(国家)
- `searchTextUseAi` — 文本AI搜索，专门用于文本内容的智能搜索。输入文本内容，AI会从中提取关键信息并搜索匹配的风险名单。如果能够自行从文本中提取出关键信息，直接使用searchAll会更快返回结果按类型分组：person(个人)、entity(实体)、cou…
- `searchTogether` — 联合搜索风险名单，只输入一个关键词，同时搜索个人、实体、国家表。输入搜索关键词，返回匹配的风险信息。返回结果按类型分组：person(个人)、entity(实体)、country(国家)

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get gsyu-mcp-server/g01 <tool-name>
```
