Tomba MCP Server
공식Tomba는 고유한 B2B 이메일 파인더 및 검증기로, 손쉽고 효과적인 아웃리치 확장을 위한 독특한 리드 데이터베이스를 제공합니다.
문서
Tomba.io MCP 서버
Tomba.io API와 통합하기 위한 모델 컨텍스트 프로토콜(MCP) 서버입니다. 이 서버는 표준화된 MCP 인터페이스를 통해 포괄적인 이메일 검색, 검증 및 보강 기능을 제공합니다.
기능
도구 (12개 사용 가능)
- 도메인 검색: 도메인과 연결된 모든 이메일 주소 찾기
- 이메일 찾기: 이름과 도메인으로부터 예상 이메일 주소 생성
- 이메일 검증: 이메일 전달 가능 여부 확인 및 데이터베이스 존재 여부 확인
- 이메일 보강: 추가 연락처 데이터로 이메일 보강
- 작성자 찾기: 기사 작성자의 이메일 주소 검색
- LinkedIn 찾기: LinkedIn 프로필 URL에서 이메일 찾기
- 전화번호 찾기: 이메일, 도메인 또는 LinkedIn으로 전화번호 검색
- 전화번호 검증: 전화번호 유효성 검사 및 통신사 정보 확인
- 이메일 개수: 도메인의 총 이메일 개수 가져오기
- 유사 도메인 찾기: 대상 도메인을 기반으로 유사한 도메인 찾기
- 기술 스택 찾기: 웹사이트에서 사용하는 기술 스택 검색
- 회사 검색: 고급 필터를 사용한 자연어 쿼리로 회사 검색
리소스 (7개 사용 가능)
tomba://api/status- API 상태 및 계정 정보tomba://domain/{domain}- 도메인 정보tomba://email/{email}- 이메일 정보tomba://similar/{domain}- 유사 도메인 분석tomba://technology/{domain}- 기술 스택 정보tomba://docs/api- API 문서tomba://docs/tools- 도구 문서
프롬프트 (16개의 사전 구축 워크플로우)
- find_contact - 개인의 완전한 연락처 정보 찾기
- verify_email_list - 이메일 주소 일괄 검증
- research_company - 회사 연락처 및 구조 조사
- enrich_lead - 사용 가능한 모든 데이터로 리드 보강
- find_journalists - 기사에서 언론인 연락처 찾기
- finder_phone - 연락처의 전화번호 찾기
- validate_phone - 전화번호 검증
- competitor_analysis - 유사 도메인 및 기술을 사용하여 경쟁사 분석
- technology_audit - 웹사이트의 종합 기술 감사
- domain_insights - 이메일 개수 및 기술을 포함한 도메인에 대한 종합적인 인사이트 얻기
- bulk_domain_research - 이메일 개수 및 기본 정보를 위해 여러 도메인 조사
- find_target_companies - 고급 필터(규모, 유형, 수익, 산업)로 회사 찾기
- market_research - 종합적인 필터링으로 시장 세그먼트 내 회사 조사
- lead_generation - 회사 및 해당 연락처를 찾아 리드 생성
- prospect_enrichment - 종합 데이터로 회사 잠재 고객 보강
- industry_analysis - 상세 세분화를 통해 산업 내 회사 분석
회사 검색 프롬프트를 위한 필터 옵션
| 필터 | 사용 가능한 값 |
|---|---|
| 규모 | 1-10 (초소형), 11-50 (소형), 51-250 (중형), 251-1K (중대형), 1K-5K (대형), 5K-10K (초대형), 10K-50K (엔터프라이즈), 50K-100K (대규모), 100K+ (글로벌) |
| 유형 | education, government, nonprofit, private, public, personal |
| 수익 | $0-$1M, $1M-$10M, $10M-$50M, $50M-$100M, $100M-$250M, $250M-$500M, $500M-$1B, $1B-$10B, $10B+ |
| 산업 | LinkedIn 산업 코드 V2 기반 (컴퓨터 소프트웨어, 금융 서비스, 병원 및 건강 관리 등 140개 이상의 산업) |
전송 옵션
- stdio - 표준 입출력 (기본값, Claude Desktop용)
- http - REST 엔드포인트가 있는 HTTP 서버
설치
사전 요구 사항
- Node.js 18 이상
- npm 또는 yarn
- Tomba API 계정 (여기에서 가입)
스크린샷

옵션 1: NPX를 통한 설치 (권장)
Tomba MCP 서버를 사용하는 가장 쉬운 방법은 npx를 이용하는 것이며, 리포지토리를 복제할 필요가 없습니다.
macOS/Linux
claude_desktop_config.json (~/Library/Application Support/Claude/claude_desktop_config.json)에 추가:
{
"mcpServers": {
"tomba": {
"command": "npx",
"args": ["-y", "tomba-mcp-server"],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
Windows
claude_desktop_config.json (%APPDATA%\Claude\claude_desktop_config.json)에 추가:
{
"mcpServers": {
"tomba": {
"command": "npx",
"args": ["-y", "tomba-mcp-server"],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
참고: -y 플래그는 설치 프롬프트를 자동으로 수락하며, npx는 항상 최신 버전을 가져옵니다.
옵션 2: 소스에서 설치
서버를 수정하거나 개발에 기여하려는 경우:
# Clone the repository
git clone https://github.com/tomba-io/tomba-mcp-server.git
cd tomba-mcp-server
# Install dependencies
yarn install
# Build the project
yarn build
구성
OpenClaw 스킬
이 리포지토리에는 이제 skills/tomba-contact-intelligence/SKILL.md에 작업 공간 로컬 OpenClaw 스킬이 포함되어 있습니다.
이 스킬은 OpenClaw가 연락처 검색, 회사 조사, 이메일 검증, 전화번호 조회 및 잠재 고객 보강 워크플로우에 적합한 Tomba MCP 도구를 선택하도록 돕기 위해 설계되었습니다.
사용 방법:
- 이 리포지토리를 OpenClaw 작업 공간으로 열거나
skills/tomba-contact-intelligence디렉터리를 OpenClaw 스킬 디렉터리에 복사합니다. - Tomba MCP 서버가 구성되어 있고 OpenClaw에서 사용할 수 있는지 확인합니다.
- 스킬이 로드되도록 새 OpenClaw 세션을 시작합니다.
예시 프롬프트:
- "stripe.com에서 파트너십을 위한 최적의 연락처를 찾고 반환하기 전에 이메일을 검증하세요."
- "독일의 핀테크 회사를 조사한 다음, 상위 일치 항목에 대한 잠재 영업 연락처를 식별하세요."
- "이 잠재 고객을 이메일, 전화번호, 회사 기술 및 유사 경쟁사로 보강하세요: [email protected]"
Claude Desktop 설정
Claude Desktop에서 이 서버를 사용하려면 claude_desktop_config.json 파일에 구성을 추가하세요.
NPX 사용 (권장)
이 방법은 자동으로 최신 게시 버전을 사용합니다.
macOS/Linux (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"tomba": {
"command": "npx",
"args": ["-y", "tomba-mcp-server"],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
Windows (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"tomba": {
"command": "npx",
"args": ["-y", "tomba-mcp-server"],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
로컬 설치 사용
소스에서 빌드한 경우 설치 디렉터리의 절대 경로를 사용하세요.
macOS/Linux:
{
"mcpServers": {
"tomba": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/tomba-mcp-server/server/index.js"],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
Windows:
{
"mcpServers": {
"tomba": {
"command": "node",
"args": [
"C:\\ABSOLUTE\\PATH\\TO\\tomba-mcp-server\\server\\index.js"
],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
중요 참고 사항:
your-api-key-here및your-secret-key-here을 실제 Tomba API 자격 증명으로 교체하세요.- 로컬 설치의 경우
/ABSOLUTE/PATH/TO/tomba-mcp-server을 설치 디렉터리의 전체 경로로 교체하세요. - 구성을 업데이트한 후 Claude Desktop을 다시 시작하세요.
Tomba API 자격 증명 얻기
- https://tomba.io 방문
- 계정에 가입하거나 로그인
- 대시보드로 이동
- API 설정으로 이동
- API 키와 비밀 키 복사
대안: HTTP 전송 사용
npx를 사용한 HTTP 전송의 경우:
{
"mcpServers": {
"tomba": {
"command": "npx",
"args": [
"-y",
"tomba-mcp-server",
"--transport",
"http",
"--port",
"3000"
],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
로컬 설치를 사용한 HTTP 전송의 경우:
{
"mcpServers": {
"tomba": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/tomba-mcp-server/server/index.js",
"--transport",
"http",
"--port",
"3000"
],
"env": {
"TOMBA_API_KEY": "your-api-key-here",
"TOMBA_SECRET_KEY": "your-secret-key-here"
}
}
}
}
사용법
명령줄 옵션
Usage: tomba-mcp-server [options]
Options:
--transport <type> Transport type: 'stdio' or 'http' (default: stdio)
--port <number> Port number for HTTP transport (default: 3000)
--help Show help message
Environment Variables:
TOMBA_API_KEY Your Tomba API key (required)
TOMBA_SECRET_KEY Your Tomba secret key (required)
Examples:
# Run with stdio transport (default)
node server/index.js
# Run with HTTP transport on default port (3000)
node server/index.js --transport http
# Run with HTTP transport on custom port
node server/index.js --transport http --port 8080
독립형 HTTP 서버
서버를 독립형 HTTP 서비스로 실행할 수도 있습니다.
export TOMBA_API_KEY="your-api-key"
export TOMBA_SECRET_KEY="your-secret-key"
node server/index.js --transport http --port 3000
HTTP API 엔드포인트
- POST /mcp - JSON-RPC 요청 전송
- GET /mcp - 알림을 위한 서버 전송 이벤트 (X-Session-Id 헤더 필요)
- DELETE /mcp - 세션 종료 (X-Session-Id 헤더 필요)
- GET /health - 상태 확인 엔드포인트
- GET /sessions - 활성 세션 나열 (인증 필요)
HTTP 요청 예시
curl -X POST http://localhost:3000/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "email_finder",
"arguments": {
"domain": "stripe.com",
"firstName": "Patrick",
"lastName": "Collison"
}
},
"id": 1
}'
🔧 개발
개발 명령어
# Run in development mode
yarn dev
# Build the project
yarn build
# Run tests
yarn test
# Run tests in watch mode
yarn test:watch
# Run tests with coverage
yarn test:coverage
# Lint code
yarn lint
# Fix linting errors
yarn lint:fix
🔍 디버깅 및 테스트
MCP 인스펙터 (권장)
MCP 서버를 테스트하고 디버깅하는 가장 쉬운 방법:
# Build and launch MCP Inspector
yarn debug
이 명령은 다음을 수행할 수 있는 웹 인터페이스를 엽니다.
- 📋 사용 가능한 모든 도구 보기
- 🧪 대화형으로 도구 테스트
- 📊 요청/응답 검사
- 🐛 실시간 디버깅
대체 디버그 방법
# Debug TypeScript directly
yarn debug:dev
# Run integration tests
yarn test:integration
# Manual testing
yarn build
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | node server/index.js
VS Code 디버깅
VS Code를 사용하는 경우 포함된 디버그 구성을 사용하세요.
- MCP 서버 디버그: 컴파일된 JavaScript 디버그
- TypeScript 디버그: TypeScript 소스 직접 디버그
- 인스펙터로 디버그: MCP 인스펙터로 디버그
- 테스트 실행: Jest 테스트 디버그
포괄적인 디버깅 지침은 DEBUG_GUIDE.md를 참조하세요.
🧪 개별 도구 테스트
1. 도메인 검색
도메인 이름과 연결된 이메일 주소를 검색합니다.
{
"name": "domain_search",
"arguments": {
"domain": "tomba.io",
"limit": 10,
"page": 1
}
}
응답:
{
"data": {
"organization": {
"website_url": "tomba.io",
"organization": "Tomba technology web service LLC",
"location": {
"country": "US",
"city": "Claymont",
"state": "Delaware",
"street_address": "1228 claymont",
"postal_code": "19703"
},
"social_links": {
"twitter_url": "https://twitter.com/tombaplatforum",
"facebook_url": "https://www.facebook.com/tombaplatforum",
"linkedin_url": "https://www.linkedin.com/company/tomba-io"
},
"disposable": false,
"webmail": false,
"phone_number": "(850) 790-5575",
"industries": "Information Technology and Services",
"founded": "2021",
"company_size": "1-10",
"company_type": "privately held",
"revenue": "$0-$1M",
"accept_all": false,
"description": "the most powerful email-finding tool which is able to list all the email addresses of people who are working in a particular company.",
"pattern": "{l}.{first}",
"total_similar": 35,
"keywords": [
"lead generation software"
],
"ranking": 661495,
"whois": {
"registrar_name": "namecheap, inc.",
"created_date": "2020-07-07T20:54:07+02:00",
"referral_url": "https://www.namecheap.com/"
},
"last_updated": "2025-09-06T00:22:01+02:00"
},
"emails": [
{
"email": "[email protected]",
"first_name": "Mohamed",
"last_name": "Ben rebia",
"full_name": "Mohamed Ben rebia",
"gender": "male",
"phone_number": false,
"type": "personal",
"country": "DZ",
"position": "CEO",
"department": "executive",
"seniority": "senior",
"twitter": null,
"linkedin": "https://www.linkedin.com/in/mohamed-ben-rebia",
"score": 100,
"verification": {
"date": "2025-09-22T00:00:00+02:00",
"status": "valid"
},
"sources": [
{
"uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts",
"website_url": "github.com",
"extracted_on": "2021-02-08T20:09:54+01:00",
"last_seen_on": "2021-02-08T22:43:40+01:00",
"still_on_page": true
},
....
]
},
...
...
...
...
...
]
},
"meta": {
"total": 21,
"pageSize": 10,
"current": 1,
"total_pages": 3,
"params": {
"domain": "tomba.io",
"page": 1,
"limit": 10,
"department": null,
"country": null,
"type": "all",
"live": false
}
}
}
2. 이메일 찾기
도메인, 이름 및 성으로부터 예상 이메일 주소를 생성합니다.
{
"name": "email_finder",
"arguments": {
"domain": "example.com",
"firstName": "John",
"lastName": "Doe"
}
}
응답:
{
"data": {
"email": "[email protected]",
"first_name": "Mohamed",
"last_name": "Ben rebia",
"full_name": "Mohamed Ben rebia",
"website_url": "tomba.io",
"company": "Tomba technology web service LLC",
"position": "CEO",
"country": "DZ",
"gender": "male",
"twitter": null,
"linkedin": "https://www.linkedin.com/in/mohamed-ben-rebia",
"score": 100,
"accept_all": null,
"phone_number": false,
"verification": {
"date": "2025-09-22T00:00:00+02:00",
"status": "valid"
},
"sources": [
{
"uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts",
"website_url": "github.com",
"extracted_on": "2021-02-08T20:09:54+01:00",
"last_seen_on": "2021-02-08T22:43:40+01:00",
"still_on_page": true
}
]
}
}
3. 이메일 검증
이메일 주소 전달 가능 여부를 확인하고 데이터베이스 존재 여부를 확인합니다.
{
"name": "email_verifier",
"arguments": {
"email": "[email protected]"
}
}
응답:
{
"data": {
"email": {
"email": "[email protected]",
"result": "deliverable",
"status": "valid",
"score": 99,
"smtp_provider": "Google Workspace",
"mx": {
"records": [
"aspmx.l.google.com",
"alt2.aspmx.l.google.com",
"alt1.aspmx.l.google.com",
"alt4.aspmx.l.google.com",
"alt3.aspmx.l.google.com"
]
},
"mx_check": true,
"smtp_server": true,
"smtp_check": true,
"accept_all": false,
"greylisted": false,
"block": true,
"gibberish": false,
"disposable": false,
"webmail": false,
"regex": true,
"whois": {
"registrar_name": "namecheap, inc.",
"referral_url": "https://www.namecheap.com/",
"created_date": "2020-07-07T20:54:07+02:00"
}
},
"sources": [
{
"uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts",
"website_url": "github.com",
"extracted_on": "2021-02-08T20:09:54+01:00",
"last_seen_on": "2021-02-08T22:43:40+01:00",
"still_on_page": true
}
]
}
}
4. 이메일 보강
추가 연락처 정보로 이메일 주소를 보강합니다.
{
"name": "email_enrichment",
"arguments": {
"email": "[email protected]"
}
}
응답:
{
"data": {
"email": "[email protected]",
"first_name": "Mohamed",
"last_name": "Ben rebia",
"full_name": "Mohamed Ben rebia",
"website_url": "tomba.io",
"company": "Tomba technology web service LLC",
"position": "CEO",
"country": "DZ",
"gender": "male",
"twitter": null,
"linkedin": "https://www.linkedin.com/in/mohamed-ben-rebia",
"score": 100,
"accept_all": null,
"phone_number": false,
"verification": {
"date": "2025-09-22T00:00:00+02:00",
"status": "valid"
},
"sources": [
{
"uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts",
"website_url": "github.com",
"extracted_on": "2021-02-08T20:09:54+01:00",
"last_seen_on": "2021-02-08T22:43:40+01:00",
"still_on_page": true
}
]
}
}
5. 작성자 찾기
URL에서 기사 작성자의 이메일 주소를 찾습니다.
{
"name": "author_finder",
"arguments": {
"url": "https://example.com/article"
}
}
응답:
{
"data": {
"email": "[email protected]",
"first_name": "Mohamed",
"last_name": "Ben rebia",
"full_name": "Mohamed Ben rebia",
"website_url": "tomba.io",
"company": "Tomba technology web service LLC",
"position": "CEO",
"country": "DZ",
"gender": "male",
"twitter": null,
"linkedin": "https://www.linkedin.com/in/mohamed-ben-rebia",
"score": 100,
"accept_all": null,
"phone_number": false,
"verification": {
"date": "2025-09-22T00:00:00+02:00",
"status": "valid"
},
"sources": [
{
"uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts",
"website_url": "github.com",
"extracted_on": "2021-02-08T20:09:54+01:00",
"last_seen_on": "2021-02-08T22:43:40+01:00",
"still_on_page": true
}
]
}
}
6. LinkedIn 찾기
LinkedIn 프로필 URL에서 이메일 주소를 찾습니다.
{
"name": "linkedin_finder",
"arguments": {
"url": "https://linkedin.com/in/johndoe"
}
}
응답:
{
"data": {
"email": "[email protected]",
"first_name": "Mohamed",
"last_name": "Ben rebia",
"full_name": "Mohamed Ben rebia",
"website_url": "tomba.io",
"company": "Tomba technology web service LLC",
"position": "CEO",
"country": "DZ",
"gender": "male",
"twitter": null,
"linkedin": "https://www.linkedin.com/in/mohamed-ben-rebia",
"score": 100,
"accept_all": null,
"phone_number": false,
"verification": {
"date": "2025-09-22T00:00:00+02:00",
"status": "valid"
},
"sources": [
{
"uri": "https://github.com/tomba-io/generic-emails/blob/084fc1a63d3cdaf9a34f255bedc2baea49a8e8b9/src/lib/validation/hash.ts",
"website_url": "github.com",
"extracted_on": "2021-02-08T20:09:54+01:00",
"last_seen_on": "2021-02-08T22:43:40+01:00",
"still_on_page": true
}
]
}
}
7. 전화번호 찾기
이메일, 도메인 또는 LinkedIn 프로필을 기반으로 전화번호를 검색합니다.
{
"name": "phone_finder",
"arguments": {
"domain": "tomba.io"
}
}
응답:
{
"data": {
"domain": "tomba.io",
"valid": true,
"local_format": "(850) 790-5575",
"intl_format": "+1 850-790-5575",
"e164_format": "+18507905575",
"rfc3966_format": "tel:+1-850-790-5575",
"country_code": "US",
"line_type": "FIXED_LINE_OR_MOBILE",
"carrier": "",
"timezones": ["America/New_York"]
}
}
8. 전화번호 검증
전화번호 유효성을 검사하고 통신사 정보를 확인합니다.
{
"name": "phone_validator",
"arguments": {
"phone": "+213667945402"
}
}
응답:
{
"data": {
"valid": true,
"local_format": "0667 94 54 02",
"intl_format": "+213 667 94 54 02",
"e164_format": "+213667945402",
"rfc3966_format": "tel:+213-667-94-54-02",
"country_code": "DZ",
"line_type": "MOBILE",
"carrier": "Mobilis",
"timezones": ["Europe/Paris"]
}
}
9. 이메일 개수
도메인의 총 이메일 주소 개수를 가져옵니다.
{
"name": "email_count",
"arguments": {
"domain": "tomba.io"
}
}
응답:
{
"domain": "tomba.io",
"total": 245,
"personalEmails": 198,
"genericEmails": 47,
"department": {
"engineering": 45,
"sales": 38,
"marketing": 32,
"hr": 15,
"finance": 12,
"legal": 8,
"executive": 25,
"support": 28,
"other": 42
},
"seniority": {
"junior": 89,
"senior": 125,
"executive": 31
},
"source": "tomba_email_count"
}
10. 유사 도메인 찾기
특정 도메인을 기반으로 유사한 도메인을 찾습니다.
{
"name": "similar_finder",
"arguments": {
"domain": "tomba.io"
}
}
응답:
{
"data": [
{
"website_url": "summit.com",
"name": "Summit",
"industries": "Wholesale"
},
{
"website_url": "hunter.io",
"name": "Hunter",
"industries": "Information Technology and Services"
},
{
"website_url": "voilaNorbert.com",
"name": "VoilaNorbert",
"industries": "Information Technology and Services"
}
]
}
11. 기술 스택 찾기
모든 웹사이트의 기술 스택을 즉시 확인합니다.
{
"name": "technology_finder",
"arguments": {
"domain": "tomba.io"
}
}
응답:
{
"domain": "tomba.io",
"data": [
{
"slug": "intercom",
"name": "Intercom",
"icon": "Intercom.png",
"website": "https://www.intercom.com",
"categories": {
"id": 10,
"slug": "analytics",
"name": "Analytics"
}
}
]
}
12. 회사 검색
위치, 산업, 규모 및 수익을 포함한 고급 필터와 함께 자연어 쿼리를 사용하여 회사를 검색합니다.
{
"name": "companies_search",
"arguments": {
"filters": {
"location_city": {
"include": ["san francisco"]
},
"industry": {
"include": ["technology"]
},
"size": {
"include": ["51-200", "201-500"]
}
},
"page": 1,
"limit": 10
}
}
응답:
{
"data": {
"companies": [
{
"name": "Tech Company Inc",
"domain": "techcompany.com",
"industry": "Technology",
"location": {
"city": "San Francisco",
"state": "California",
"country": "United States"
},
"size": "51-200",
"revenue": "$10M-$50M"
}
],
"total": 150,
"page": 1
}
}
사용 가능한 필터:
location_city: 포함/제외 배열로 도시별 필터링location_state: 포함/제외 배열로 주/도별 필터링location_country: 포함/제외 배열로 국가별 필터링industry: 산업별 필터링 (LinkedIn 산업 코드 V2 기반 - 140개 이상의 산업)type: 회사 유형별 필터링:education,government,nonprofit,private,public,personalsize: 회사 규모별 필터링:1-10,11-50,51-250,251-1K,1K-5K,5K-10K,10K-50K,50K-100K,100K+revenue: 수익 범위별 필터링:$0-$1M,$1M-$10M,$10M-$50M,$50M-$100M,$100M-$250M,$250M-$500M,$500M-$1B,$1B-$10B,$10B+founded: 포함/제외 배열로 설립 연도별 필터링keywords: 포함/제외 배열로 키워드별 필터링sic: 포함/제외 배열로 SIC 코드별 필터링naics: 포함/제외 배열로 NAICS 코드별 필터링similar: 포함/제외 배열로 유사 도메인별 필터링
속도 제한 및 사용량
API 속도 제한
Tomba.io는 구독 플랜에 따라 속도 제한을 구현합니다.
- 무료 플랜: 월 50회 요청
- 성장 플랜: 월 5,000회 요청 + 10,000회 검증 요청
- 프로 플랜: 월 10,000회 요청
- 엔터프라이즈 플랜: 월 50,000회 요청
- 맞춤형 플랜: 맞춤형 제한
Tomba 가격 플랜에 대해 자세히 알아보세요.
속도 제한 헤더
각 API 응답에는 속도 제한 정보가 포함됩니다.
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1609459200
Tomba API 속도 제한에 대해 자세히 알아보세요.
속도 제한 처리
속도 제한을 초과하면 API는 429 Too Many Requests 상태와 함께 다음을 반환합니다.
{
"error": {
"type": "rate_limit",
"message": "Rate limit exceeded. Please try again in 60 seconds",
"code": 429
}
}
모범 사례
- 사용량 모니터링: tomba.io/dashboard에서 대시보드 확인
- 백오프 구현: 지수 백오프로 429 응답 처리
- 일괄 작업: 동일한 도메인의 여러 이메일에 대해 도메인 검색 사용
- 결과 캐시: 중복 요청을 피하기 위해 결과를 로컬에 저장
- 적절한 계획: 사용 패턴에 따라 플랜 업그레이드
사용 팁
- 도메인 검색은 요청당 여러 이메일을 반환합니다 (개별 조회보다 효율적)
- 이메일 검증은 유효한 이메일 형식에 대해서만 크레딧을 소비합니다.
- 전화번호 찾기는 요청당 여러 번호를 반환할 수 있습니다.
- 보강은 단일 요청으로 포괄적인 데이터를 제공합니다.
문제 해결
Claude Desktop에서 서버가 시작되지 않음
-
Node.js 버전 확인: Node.js 18 이상이 설치되어 있는지 확인하세요.
node --version -
NPX 사용 시:
- 첫 실행 시 안정적인 인터넷 연결이 필요합니다.
-y플래그가 설치를 자동으로 수락해야 합니다.- NPX는 처음 사용 후 패키지를 캐시합니다.
-
로컬 설치 사용 시:
- 구성에서 절대 경로가 올바른지 확인하세요.
server/index.js이 존재하는지 확인:ls -la server/index.jsyarn build을 성공적으로 실행했는지 확인하세요.
-
API 자격 증명 확인: Tomba API 키가 올바른지 확인하세요.
-
Claude 로그 확인:
- macOS:
~/Library/Logs/Claude/mcp*.log - Windows:
%APPDATA%\Claude\logs\mcp*.log
- macOS:
NPX 관련 문제
"npx 명령을 찾을 수 없음":
- npm이 설치되어 있는지 확인:
npm --version - NPX는 npm 5.2.0 이상에 포함되어 있으며, 필요한 경우 업데이트:
npm install -g npm
패키지를 찾을 수 없음:
- 패키지가 게시되었는지 확인:
npm view tomba-mcp-server - npm 캐시 지우기 시도:
npm cache clean --force
항상 패키지 다운로드:
- 이는
-y플래그를 사용할 때의 정상적인 동작입니다. - NPX는 첫 다운로드 후 패키지를 캐시합니다.
- 영구 설치를 원하면 로컬 설치 방법을 사용하세요.
인증 오류
- https://app.tomba.io/dashboard에서 API 키를 확인하세요.
- 구성에서 환경 변수가 올바르게 설정되었는지 확인하세요.
- API 구독이 활성 상태인지 확인하세요.
도구가 응답하지 않음
- Tomba API 속도 제한을 확인하세요.
- 네트워크 연결을 확인하세요.
- 서버 로그에서 오류 메시지를 검토하세요.
Tomba 소개
2020년에 설립된 Tomba는 어디에서나 사용할 수 있는 가장 신뢰할 수 있고 정확하며 심층적인 이메일 주소 데이터 소스임을 자부합니다. 우리는 이메일 찾기 API를 생산하기 위해 테라바이트 규모의 데이터를 처리합니다.
기여하기
- 포크하기 (https://github.com/tomba-io/tomba-mcp-server/fork)
- 기능 브랜치 만들기 (
git checkout -b my-new-feature) - 변경 사항 커밋하기 (
git commit -am 'Add some feature') - 브랜치에 푸시하기 (
git push origin my-new-feature) - 새 풀 리퀘스트 만들기
라이선스
자세한 내용은 라이선스 파일을 참조하세요.