2026-01-07 01:24:50 +09:00
|
|
|
export const websearch = {
|
|
|
|
|
type: "remote" as const,
|
|
|
|
|
url: "https://mcp.exa.ai/mcp?tools=web_search_exa",
|
|
|
|
|
enabled: true,
|
2026-01-06 14:12:22 -07:00
|
|
|
headers: process.env.EXA_API_KEY
|
|
|
|
|
? { "x-api-key": process.env.EXA_API_KEY }
|
|
|
|
|
: undefined,
|
2026-01-17 16:36:23 +05:30
|
|
|
// Disable OAuth auto-detection - Exa uses API key header, not OAuth
|
|
|
|
|
oauth: false as const,
|
2026-01-07 01:24:50 +09:00
|
|
|
}
|