prospeo cli
CLI和MCP服务器 Prospeo API公司 --个人/公司丰富和搜索人工智能代理和开发人员。
npm install -g prospeo-cli它做什么
- 丰富人 --电子邮件、手机、工作历史、LinkedIn以及来自姓名、电子邮件或LinkedIn URL的完整公司数据
- 丰富公司 --50多个数据点:资金、技术栈、员工人数、地点、招聘信息、社交网址
- 搜索人员 --200多万个联系人,30多个过滤器:资历、部门、职位、地点、行业等
- 搜索公司 --3000多万家公司有过滤器:行业、地点、融资阶段、员工人数等
- 双CLI+MCP --每个命令都可以作为终端命令,也可以作为Claude、Cursor、VS Code的MCP工具
- 本地代理 --默认情况下,所有输出都是JSON,错误转到stderr,退出代码为0/1
______________________________________________________________________
安装并验证
npm install -g prospeo-cli
# If 'prospeo' is not found after install, add npm global bin to PATH:
export PATH="$(npm root -g)/../bin:$PATH"
# Add that line to ~/.zshrc or ~/.bashrc to make it permanent
# Set your API key (get it at https://prospeo.io/dashboard/api)
export PROSPEO_API_KEY="your-api-key"
# Verify
prospeo account info其他身份验证选项:
prospeo person enrich --api-key "your-key" --linkedin-url "..." # per-command flag
prospeo login # interactive, stores in ~/.prospeo/config.json______________________________________________________________________
命令
人
# Enrich a single person
prospeo person enrich --linkedin-url "https://linkedin.com/in/jdoe" --pretty
prospeo person enrich --email "john@acme.com"
prospeo person enrich --first-name "Eva" --last-name "Kiegler" --company-website "intercom.com"
prospeo person enrich --linkedin-url "..." --enrich-mobile --only-verified-mobile
# Bulk enrich up to 50 persons
prospeo person bulk-enrich \
--data '[{"identifier":"1","linkedin_url":"https://linkedin.com/in/jdoe"},{"identifier":"2","email":"jane@stripe.com"}]' \
--only-verified-email
# Search 200M+ contacts
prospeo person search \
--filters '{"person_seniority":{"include":["Vice President","C-Suite"]},"company_industry":{"include":["Software Development"]}}' \
--page 1 --pretty公司
# Enrich a single company
prospeo company enrich --website "stripe.com" --pretty
prospeo company enrich --linkedin-url "https://linkedin.com/company/stripe"
prospeo company enrich --name "Salesforce" --website "salesforce.com"
# Bulk enrich up to 50 companies
prospeo company bulk-enrich \
--data '[{"identifier":"1","company_website":"intercom.com"},{"identifier":"2","company_website":"stripe.com"}]'
# Search 30M+ companies
prospeo company search \
--filters '{"company_funding":{"stage":["Series A","Series B"]},"company_location_search":{"include":["United States"]}}' \
--pretty建议(免费-无学分)
# Get exact location strings for search filters
prospeo suggestions location --query "new york"
prospeo suggestions location --query "united states"
# Get exact job title strings for search filters
prospeo suggestions job-title --query "head of sales"
prospeo suggestions job-title --query "vp engineering"账户
prospeo account info --pretty
# → {"current_plan":"GROWTH","remaining_credits":4850,"used_credits":150,"next_quota_renewal_date":"..."}______________________________________________________________________
输出标志(所有命令)
--pretty Pretty-printed JSON
--fields a,b,c Return only specified top-level fields
--quiet No output, exit code only
--api-key Override PROSPEO_API_KEY for this command______________________________________________________________________
MCP 服务器
添加到克劳德桌面、光标或VS代码:
{
"mcpServers": {
"prospeo": {
"command": "npx",
"args": ["prospeo-cli", "mcp"],
"env": {
"PROSPEO_API_KEY": "your-api-key"
}
}
}
}或者,如果全局安装:使用 "command": "prospeo" 而不是 npx.
MCP工具: person_enrich, person_bulk_enrich, person_search, company_enrich, company_bulk_enrich, company_search, suggestions_location, suggestions_job_title, account_info
______________________________________________________________________
搜索筛选器枚举
资历价值
"Founder/Owner" "C-Suite" "Partner" "Vice President" "Head" "Director" "Manager" "Senior" "Entry" "Intern"
部门价值观
"C-Suite" "Sales" "Engineering & Technical" "Marketing" "Finance" "Human Resources" "Information Technology" "Legal" "Operations" "Product" "Design" "Consulting" "Medical & Health" "Education & Coaching"
员工范围值
"1-10" "11-20" "21-50" "51-100" "101-200" "201-500" "501-1000" "1001-2000" "2001-5000" "5001-10000" "10000+"
融资阶段价值
"Pre seed" "Seed" "Series A" "Series B" "Series C" "Series D" "Series E-J" "Angel" "Grant" "Private equity" "Debt financing" "Convertible note" "Corporate round" "Post IPO equity" "Post IPO debt"
位置值
使用 prospeo suggestions location --query "" 以获得精确的字符串。示例: "United States" "California" "New York City, New York, United States" "Greater San Francisco Bay Area" "Greater London Area"
______________________________________________________________________
信贷成本
| 操作 | 积分 |
|---|---|
| 人丰富 | 1 |
| 个人丰富+移动 | 10 |
| 个人批量丰富(每场比赛) | 1或10 |
| 人员搜索(每页) | 1 |
| 公司丰富 | 1 |
| 公司批量丰富(每场比赛) | 1 |
| 公司搜索(每页) | 1 |
| 建议、帐户信息 | 免费 |
| 重新丰富同一记录 | 免费 |
______________________________________________________________________
AI代理指南
看 代理商.md 对于完整的工作流,所有过滤器模式、响应形状、错误代码和代理提示。
许可证
麻省理工学院
