3ステップ。エンドユーザー側のログインは不要です。
カテゴリ、場所、言語、キーワードで専門家を検索します。プロフィールURLと予約リンク付きのランキングリストを返します。
完全なプロフィールを取得します — 経歴、価格付きサービス、週間対応スケジュール、すべての公開連絡先。
ユーザーに代わって専門家に問い合わせを送信します。専門家はメールで通知を受け、直接返信します。
Expert SapiensをClaude、Cursor、WindsurfまたはMCP対応ホストにネイティブツールとして追加してください。MCPサーバーのURL: 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サーバーが提供する3つのツール。
search_experts認証不要カテゴリ、場所、言語、キーワードで認証済み専門家を検索・フィルタリングします。プロフィールURLと予約リンク付きのランキングリストを返します。
qstring?名前、職名、タグラインのキーワードcategorystring?法務 · 会計 · 移民 · 金融 · ...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."
}'