@deliveriq/mcp
@deliveriq/mcp
MiN8T의 DeliverIQ 이메일 검증 API를 위한 공식 MCP(Model Context Protocol) 서버입니다. Claude Desktop, Claude Code, Cursor 및 기타 MCP 호환 클라이언트에서 AI 에이전트가 사용할 수 있는 12개의 도구를 제공합니다.
설치
별도의 설치 단계가 필요하지 않습니다. npx -y @deliveriq/mcp 명령어를 통해 필요할 때 서버를 가져와 실행할 수 있습니다.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) 또는 %APPDATA%\Claude\claude_desktop_config.json(Windows)에 추가하세요:
{
"mcpServers": {
"deliveriq": {
"command": "npx",
"args": ["-y", "@deliveriq/mcp"],
"env": {
"DELIVERIQ_API_KEY": "lc_your_api_key"
}
}
}
}Claude Desktop을 재시작하세요. 12개의 DeliverIQ 도구를 사용할 수 있게 됩니다.
Claude Code
claude mcp add deliveriq npx -y @deliveriq/mcp \
-e DELIVERIQ_API_KEY=lc_your_api_keyCursor
.cursor/mcp.json에 추가하세요:
{
"mcpServers": {
"deliveriq": {
"command": "npx",
"args": ["-y", "@deliveriq/mcp"],
"env": {
"DELIVERIQ_API_KEY": "lc_your_api_key"
}
}
}
}API 키 발급
min8t.com/deliveriq에서 가입하고 대시보드에서 키를 받으세요. 무료 티어는 데모 흐름과 지속적인 소규모 사용량을 지원합니다. 키는 lc_prefix_secret 형식으로 발급됩니다.
Related MCP server: Mailchimp MCP
환경 변수
변수 | 필수 | 설명 |
| 예 | API 키 (형식: |
| 아니오 | API URL 재정의 (기본값: |
도구 (12개)
검증
도구 | 설명 | 크레딧 |
| 단일 이메일의 도달 가능성 검증 | 1 |
| 비동기 검증을 위한 이메일 배치 제출 | 1/이메일 |
| 배치 작업 상태 및 진행률 확인 | 무료 |
| 완료된 배치 결과를 CSV로 다운로드 | 무료 |
| 페이지네이션을 포함한 검증 작업 목록 조회 | 무료 |
인텔리전스
도구 | 설명 | 크레딧 |
| 이름 + 도메인으로 비즈니스 이메일 찾기 | 2 |
| 50개 DNSBL 영역에 대한 도메인 확인 | 1 |
| SPF/DKIM/DMARC/MTA-STS/BIMI 분석 | 1 |
| 스팸 트랩 위험 평가 (13개 신호) | 1 |
| 포괄적인 도메인 신뢰도 보고서 | 1 |
| 조직 이메일 패턴 쿼리 | 무료 |
계정
도구 | 설명 | 크레딧 |
| 크레딧 잔액 및 사용 통계 확인 | 무료 |
왜 MCP인가?
이메일 도달률은 올바른 답변을 얻기 위해 6~8번의 API 호출(검증 → 평판 → DMARC → 차단 목록 → 인프라 → ...)이 필요한 문제입니다. Claude가 이러한 도구들을 오케스트레이션하도록 하는 것은 단순히 또 다른 대시보드를 제공하는 것보다 약 10배 더 유용합니다. 모델이 계획을 세우고, 결과에 따라 분기하며, 평이한 언어로 판결을 설명할 수 있기 때문입니다.
개발
# Clone the monorepo
git clone https://github.com/Davison-Francis/min8t-sdks.git
cd min8t-sdks/deliveriq-mcp
# Install + build
npm install
npm run build
# Watch mode
npm run dev
# Run directly against the published API
DELIVERIQ_API_KEY=lc_your_key node dist/index.js
# Or against a local DeliverIQ service
DELIVERIQ_API_KEY=lc_test \
DELIVERIQ_BASE_URL=http://localhost:3019/api/v1 \
node dist/index.js요구 사항
Node.js 18+ 버전
DeliverIQ API 키
로드맵
향후 작업은 ../ROADMAP.md를 참조하거나, 도구를 제안하려면 이슈를 생성해 주세요.
라이선스
MIT — LICENSE를 참조하세요.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceA lightweight Model Context Protocol (MCP) server that enables your LLM to validate email addresses. This tool checks email format, domain validity, and deliverability using the AbstractAPI Email Validation API. Perfect for integrating email validation into AI applications like Claude Desktop.14
- AlicenseAqualityAmaintenanceMailchimp MCP Server - Access Mailchimp data from Claude via MCP.10024MIT
- AlicenseBqualityBmaintenanceConnects DMARC monitoring data to AI assistants to facilitate the analysis of email security reports, domain details, and statistics. It allows users to manage security alerts, export report data, and monitor email authentication health through natural language commands.2165MIT
- AlicenseAqualityBmaintenanceEmail validation MCP server using MailboxValidator API to determine validity of an email address.3431MIT
Related MCP Connectors
Email for AI agents — send, receive as a webhook, manage domains, templates, routing.
Email for AI agents: send mail, manage contacts, automations & webhooks. Zero-DNS first send.
Email verification for AI agents — verify, clean & validate emails; self-onboard + crypto pay
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Davison-Francis/min8t-sdks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server