ZoomEye MCP 服务器是一个提供 ZoomEye v2 API 访问的 MCP(模型上下文协议)服务器。它让 AI 助手能够查询互联网范围内的主机和网络数据,查看账户配额,并且对于付费计划用户,还能获取 IP 历史记录。
git clone https://github.com/help116114/zoomeye-mcp-server.git
cd zoomeye-mcp-server
npm install
npm run build
export Zoomeye_API_KEY="your-api-key-here"
npm start
此服务器可与支持 MCP 的 AI LLM 集成。若要将其添加到 Cline、Curser 或 Claude 中,可按以下步骤操作:
{
"mcpServers": {
"zoomeye": {
"command": "node",
"args": ["./build/index.js"],
"env": {
"ZOOMEYE_API_KEY": "your-api-key-here"
}
}
}
}
get_account_info获取特定 IP 地址的详细信息。
{
"status": "success",
"data": {
"ip": "192.168.1.1",
"hostname": "example.com",
"geolocation": {
"country": "中国",
"city": "北京"
},
"ports": ["80", "443"]
}
}
search_host通过 IP 或域名搜索主机信息。
get_ip_history获取特定 IP 的历史扫描数据。
zoomeye://host/{ip}:表示要查询的主机资源。
ZGCLAB