Expert Sapiens 提供原生 MCP 服务器和 REST API,让您的 AI 智能體能夠搜索经认證的專業人士、查看完整資料并發送咨询 — 無需用戶登錄。
三个步骤。終端用戶無需登錄。
按類别、位置、语言或关键词查询專家。返回带有資料 URL 和预約链接的排名列表。
获取完整資料 — 簡介、含價格的服务、每周可用時间表和所有公開聯系渠道。
代表用戶向專家發送咨询。專家通過郵件收到通知并直接回複 — 無平台摩擦。
將 Expert Sapiens 作為原生工具添加到 Claude、Cursor、Windsurf 或任何 MCP 兼容主機。MCP 服务器地址: https://expertsapiens.com/api/mcp.
// claude_desktop_config.json
{
"mcpServers": {
"expert-sapiens": {
"url": "https://expertsapiens.com/api/mcp"
}
}
}// claude_desktop_config.json — with API key (enables submit_inquiry)
{
"mcpServers": {
"expert-sapiens": {
"url": "https://expertsapiens.com/api/mcp",
"headers": {
"Authorization": "Bearer es_live_..."
}
}
}
}// .cursor/mcp.json
{
"mcpServers": {
"expert-sapiens": {
"url": "https://expertsapiens.com/api/mcp",
"headers": {
"Authorization": "Bearer es_live_..."
}
}
}
}// For stdio-only clients — bridges remote MCP via npx
{
"mcpServers": {
"expert-sapiens": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://expertsapiens.com/api/mcp"]
}
}
}search_experts 和 get_expert 無需 API 密鑰即可使用。submit_inquiry 需要 Bearer 令牌。 生成密鑰 →
/api/mcp 和 /api/sse 的 MCP 服务器提供的三个工具。
search_experts無需认證按類别、位置、语言或关键词搜索和筛選经认證的專家。返回带有資料 URL 和预約链接的排名列表。
qstring?姓名、職稱、標语关键词categorystring?legal · accounting · immigration · finance · ...countrystring?ISO 3166-1 alpha-2(如 US、KR)languagestring?專家使用的 BCP 47 语言代碼accepting_onlyboolean?僅接受新客戶的專家limitnumber?最大結果數(默认 10,最大 20)get_expert無需认證单个專家的完整資料:簡介、含價格的服务、每周可用時间表和所有公開聯系方式。
slugstring搜索結果中專家的唯一標識符localestring?翻譯後簡介/職稱的语言(en · ko · ja · zh · fr · de)submit_inquiry需要 API 密鑰代表用戶向特定專家發送咨询。專家通過郵件收到通知并可直接回複。速率限制:每位專家每 24 小時 5 次。
expert_slugstring目標專家的標識符requester_namestring您代表的人的姓名requester_emailstring專家回複的郵箱地址messagestring咨询内容(最多 2000 字)contextobject?可選元數據(source、session_id 等)与 MCP 服务器相同的功能,以普通 HTTP 形式提供。
完整規範: https://expertsapiens.com/api/openapi.json
/api/agents/experts無需认證搜索專家
curl "https://expertsapiens.com/api/agents/experts?category=legal&language=ko&limit=5"/api/agents/experts/{slug}無需认證專家完整資料
curl "https://expertsapiens.com/api/agents/experts/james-chae?locale=en"/api/agents/inquiriesBearer 令牌向專家提交咨询
curl -X POST "https://expertsapiens.com/api/agents/inquiries" \
-H "Authorization: Bearer es_live_..." \
-H "Content-Type: application/json" \
-d '{
"expert_slug": "james-chae",
"requester_name": "Sarah Kim",
"requester_email": "[email protected]",
"message": "I need advice on a US-Korea cross-border acquisition."
}'