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_inquiryAPI 키 필요사용자를 대신해 특정 전문가에게 문의를 보냅니다. 전문가는 이메일로 알림을 받고 직접 답장할 수 있습니다. 속도 제한: 전문가당 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": "sarah@example.com",
"message": "I need advice on a US-Korea cross-border acquisition."
}'