CrabTalkCrabTalk

Set Up Search

Give your agent web search — zero API keys, one command, instant results.

Give your agent the ability to search the web. No API keys required — CrabTalk's search uses DuckDuckGo and Wikipedia directly.

1. Start the search service

crabtalk search start

This installs and starts the search MCP server. The daemon discovers it automatically and registers its tools.

2. Verify

Attach to an agent and ask it to search for something:

crabtalk attach
> What's the latest news about Rust programming?

The agent will use the search tools to find and summarize results.

How it works

The search command runs as an MCP server. The daemon connects to it, discovers its tool schemas, and makes them available to agents. When an agent decides to search, it calls the tool — the search service queries DuckDuckGo and Wikipedia, merges results, ranks by relevance, and returns them.

No API keys, no rate limits, no accounts. Results from multiple engines are deduplicated and ranked automatically.

Managing the service

crabtalk search start    # install and start
crabtalk search stop     # stop the service
crabtalk ls              # list all running services

What's next

  • MCP Servers — how tool servers connect to the daemon
  • Commands — telegram, search, and custom commands
  • REPL — interactive chat features

On this page