add-tavily-tool
FeaturedAdd Tavily Search and Extract as keyless remote MCP tools for selected NanoClaw agent groups. Use when installing Tavily web search or URL extraction without an API key.
AI & Automation 30,616 stars
12844 forks Updated today MIT
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Add Tavily Tool
Install the pinned `mcp-remote` bridge in the agent image and register Tavily's
remote MCP server for each selected agent group. The MCP server supplies its
tool descriptions and input schemas at runtime.
The registered server exposes:
- `mcp__tavily__tavily_search`
- `mcp__tavily__tavily_extract`
The registration is provider-agnostic: any provider with MCP support picks it
up (Claude, OpenCode, and Codex all do). Groups on the Claude provider already
have the built-in `WebSearch` and `WebFetch` tools
(`container/agent-runner/src/providers/claude.ts`), so the skill adds the most
for groups on other providers, and for Tavily's structured extraction
anywhere.
## Phase 1: Pre-flight
Check whether the bridge is already in the image manifest, then list the groups:
```bash
grep -n '"mcp-remote"' container/cli-tools.json || true
ncl groups list
```
Ask which agent groups should receive Tavily. If `mcp-remote` is already
present at a pinned version, reuse the existing entry instead of adding a
second one.
## Phase 2: Install the MCP bridge
Add this object to the top-level array in `container/cli-tools.json` when an
entry named `mcp-remote` is not already present:
```json
{
"name": "mcp-remote",
"version": "0.1.38"
}
```
Keep the JSON valid and limit the entry to the two fields shown; this package
does not require a native build-script opt-in.
Copy the dependency guard into the host test tree:
```bash
cp .claude/skills/add-tavily-tool/tavily-manifes...
Details
- Author
- nanocoai
- Repository
- nanocoai/nanoclaw
- Created
- 6 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
mcp-toolchain-manager
Detect frontend tool capabilities, report gaps, verify official setup sources, plan approval-gated MCP changes, or update project/mcp-profile.md. Prefer capabilities over provider names; never install or configure without approval.
5 Updated 1 months ago
ytvee-dev AI & Automation Featured
add-atomic-chat-tool
Add Atomic Chat MCP server so the container agent can call local models served by the Atomic Chat desktop app via its OpenAI-compatible API.
30,616 Updated today
nanocoai AI & Automation Solid
mcp
Configure and manage MCP providers for Agent Toolkit — setup, list, doctor, and per-tool deployment.
14 Updated today
ulises-jeremias