Skip to main content
Glama
lennney

Agent Search MCP

by lennney

Agent Search MCP

๐Ÿ” Free multi-source search for AI agents โ€” multi-source verification, token savings, MCP native.

License Node.js MCP

Works with Hermes, Claude Code, Cursor, Windsurf, OpenClaw, and any MCP-compatible client.


English ยท ไธญๆ–‡ ยท ๅฎ‰่ฃ… ยท ๆ–‡ๆกฃ


Quick Start

# Option 1: npx (recommended)
npx agent-search-mcp

# Option 2: global install
npm install -g agent-search-mcp

Platform Setup

# ~/.hermes/config.yaml
mcp_servers:
  agent-search:
    command: npx
    args: ["agent-search-mcp"]
// ~/.claude/mcp.json
{
  "mcpServers": {
    "agent-search": {
      "command": "npx",
      "args": ["agent-search-mcp"]
    }
  }
}
// .cursor/mcp.json
{
  "mcpServers": {
    "agent-search": {
      "command": "npx",
      "args": ["agent-search-mcp"]
    }
  }
}
// ~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "agent-search": {
      "command": "npx",
      "args": ["agent-search-mcp"]
    }
  }
}
// openclaw.config.ts
{
  mcpServers: {
    "agent-search": {
      command: "npx",
      args: ["agent-search-mcp"]
    }
  }
}

Related MCP server: Argus

Features

๐Ÿ†“ Free by Default

No API key required. Uses DuckDuckGo + Sogou search engines.

Engine

Type

API Key

Coverage

DuckDuckGo

Free

โŒ

Global

Sogou

Free

โŒ

Chinese

Brave Search

Paid (Free Tier)

Optional

Global

Tavily

Paid (Free Tier)

Optional

Global

๐ŸŽฏ Multi-Source Verification

Results are verified across multiple search engines. Each result includes a confidence score (1-3) based on how many engines returned it.

{
  "title": "Build an MCP Server",
  "url": "https://example.com/mcp",
  "snippet": "How to build MCP servers...",
  "confidence": 2  // Verified by 2 engines
}

๐Ÿ’ฐ Save Tokens

Optimized output reduces token consumption by ~40-50%:

Optimization

Savings

Top-1 snippet per URL

~25%

Title truncation (โ‰ค100 chars)

~15%

Snippet truncation (โ‰ค200 chars)

~15%

Deduplication

~10%

Confidence filtering

~10%

๐Ÿ”ง Progressive Disclosure

Three tools, discoverable by agents:

Tool

Purpose

When to Use

free_search

Basic search

Quick questions

free_search_advanced

Filtered search

Date ranges, domains, high confidence

free_extract

URL extraction

Read full page content


Tools

Basic web search with multi-source verification.

{
  "query": "TypeScript MCP server",
  "count": 5
}

free_search_advanced

Advanced search with filters.

{
  "query": "MCP server",
  "count": 10,
  "min_confidence": 2,
  "time_range": "week",
  "language": "zh",
  "include_domains": ["github.com"],
  "exclude_domains": ["reddit.com"]
}

Parameters:

  • min_confidence (1-3): Only return results verified by N+ sources

  • time_range: day, week, month, year

  • language: auto, en, zh

  • include_domains: Only search these domains

  • exclude_domains: Exclude these domains

free_extract

Extract full content from a URL as Markdown.

{
  "url": "https://example.com/article",
  "max_length": 5000
}

Resources

search://capabilities

Returns a Markdown document describing all available tools and features. Agents can discover capabilities on-demand.

search://health

Returns JSON with health status of each search provider:

[
  {
    "provider": "duckduckgo",
    "lastSuccess": 1719000000000,
    "errorCount": 0,
    "avgLatency": 450,
    "isHealthy": true
  }
]

Configuration

Environment Variables

Variable

Description

Required

BRAVE_API_KEY

Brave Search API key (2000 free/month)

No

TAVILY_API_KEY

Tavily API key (1000 free/month)

No

LOG_LEVEL

Log level (info, debug)

No

Zero config works โ€” no API keys needed for basic search.

With Paid Engines

Set environment variables to enable fallback to paid engines when free results are insufficient:

export BRAVE_API_KEY=your_key_here
export TAVILY_API_KEY=your_key_here

Architecture

Agent
  โ†“ MCP Protocol (stdio)
MCP Server
  โ”œโ”€โ”€ Tools Layer (progressive disclosure)
  โ”‚   โ”œโ”€โ”€ free_search (default)
  โ”‚   โ”œโ”€โ”€ free_search_advanced (optional)
  โ”‚   โ””โ”€โ”€ free_extract (optional)
  โ”œโ”€โ”€ Aggregation Layer
  โ”‚   โ”œโ”€โ”€ Top-1 Snippet merge
  โ”‚   โ”œโ”€โ”€ URL + Title dedup
  โ”‚   โ”œโ”€โ”€ Scoring + Confidence
  โ”‚   โ””โ”€โ”€ Output truncation
  โ”œโ”€โ”€ Fallback Chain
  โ”‚   โ”œโ”€โ”€ Phase 1: Free engines (DDG + Sogou)
  โ”‚   โ””โ”€โ”€ Phase 2: Paid engines (Brave + Tavily)
  โ””โ”€โ”€ Infrastructure
      โ”œโ”€โ”€ Cache (LRU, 60s TTL)
      โ”œโ”€โ”€ Rate Limiter (1s per provider)
      โ”œโ”€โ”€ Health Tracker
      โ””โ”€โ”€ SSRF Protection

Documentation / ๆ–‡ๆกฃ

Document

Description

PRD

Product Requirements Document

Architecture

Technical Architecture

Plan

Implementation Plan

Review Results

5-Team Review Results

Fork Plan

Fork & Modification Plan

CHANGELOG

Version History


Development

# Clone
git clone https://github.com/lennney/agent-search-mcp.git
cd agent-search-mcp

# Install
npm install

# Build
npm run build

# Test
npm test

# Run
npm start

License

Apache License 2.0

Based on open-websearch by Aas-ee.

Copyright 2025 Open-WebSearch MCP Server Contributors
Based on open-websearch by Aas-ee (Apache 2.0).
Modified by Agent Search MCP Contributors.
Copyright 2026 Agent Search MCP Contributors

Contributing

Contributions welcome! Please read CONTRIBUTING.md first.


Keywords

MCP server, Model Context Protocol, AI agent search, free web search, multi-source search, DuckDuckGo MCP, Sogou search, token optimization, Hermes MCP, Claude Code MCP, Cursor MCP, AI tool, web search for agents, search aggregation, confidence scoring

Install Server
A
license - permissive license
A
quality
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/lennney/agent-search-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server