Agent-Reach/agent_reach/guides/setup-exa.md
Panniantong 80a08c8c10 docs: update all remaining references to use upstream tools directly
- docs/README_en.md: update FAQ, Works Out of the Box, Design Philosophy
- docs/troubleshooting.md: Exa fallback uses mcporter directly
- agent_reach/guides/setup-exa.md: test with mcporter call
- agent_reach/guides/setup-wechat.md: test with Jina Reader
2026-02-26 08:25:06 +01:00

41 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Exa Search 配置指南
## 功能说明
Exa 是一个 AI 语义搜索引擎。通过 MCP 接入,**免费、无需 API Key**。配置后解锁:
- 全网语义搜索
- Reddit 搜索(通过 site:reddit.com
- Twitter 搜索(通过 site:x.com
## Agent 可自动完成的步骤
`agent-reach install --env=auto` 会自动完成以下步骤,通常不需要手动操作。
### 1. 安装 mcporter
```bash
npm install -g mcporter
```
### 2. 注册 Exa MCP
```bash
mcporter config add exa https://mcp.exa.ai/mcp
```
### 3. 验证
```bash
agent-reach doctor | grep "Search"
mcporter call 'exa.web_search_exa(query: "test", numResults: 1)'
```
## 需要用户手动做的步骤
**无。** Exa 通过 MCP 接入,免费、无需注册、无需 API Key。
如果 `agent-reach install` 因为网络问题没有自动配置 Exa手动运行上面两条命令即可。
## 常见问题
**Q: 有搜索次数限制吗?**
A: MCP 端点由 Exa 官方提供mcp.exa.ai当前免费无限制。如果未来有变化会在 agent-reach 更新中适配。
**Q: mcporter 是什么?**
A: MCP 协议的命令行桥接工具,用来调用 MCP Server。Agent Reach 用它来连接 Exa 和小红书。