# io.github.IsaiahDupree/agentsearch-mcp (remote · agentsearch-mcp.vercel.app)

LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.

- Trust score: 74/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `agentsearch-mcp.vercel.app`: 74/100 (this document), [markdown](https://verifymcp.io/servers/isaiahdupree-agentsearch-mcp/agentsearch-mcp.md), [page](https://verifymcp.io/servers/isaiahdupree-agentsearch-mcp/agentsearch-mcp)

## Channel facts

- Endpoint: `https://agentsearch-mcp.vercel.app/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 80/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 79/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 418 tokens (~139/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http isaiahdupree-agentsearch-mcp https://agentsearch-mcp.vercel.app/mcp
```

### Codex

```toml
[mcp_servers.isaiahdupree-agentsearch-mcp]
url = "https://agentsearch-mcp.vercel.app/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "isaiahdupree-agentsearch-mcp": {
      "type": "remote",
      "url": "https://agentsearch-mcp.vercel.app/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add isaiahdupree-agentsearch-mcp --url https://agentsearch-mcp.vercel.app/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  isaiahdupree-agentsearch-mcp:
    url: "https://agentsearch-mcp.vercel.app/mcp"
```

### Other

```json
{
  "mcpServers": {
    "isaiahdupree-agentsearch-mcp": {
      "type": "http",
      "url": "https://agentsearch-mcp.vercel.app/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 74, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 73, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-01 (score 73)

First indexed and scored.

## MCP tools (3)

### `web_search` (~164 tokens)

Web search (SERP)

Search the web via a provider-abstracted backend (Brave or Serper, configured operator-side). Returns normalized results, each with position, title, url, snippet, source, and domain, plus a meta envelope (cache state, provider, took_ms). Returns a provider_required error if no search provider key is configured upstream. Use this for a full web SERP; use instant_answer for quick facts/definitions.

Input parameters:

- `country` (string): ISO-3166 alpha-2 region, lowercase. Default us.
- `limit` (integer): Max results, clamped to 1-20. Default 10.
- `provider` (string): Force a specific provider. Omit to use whichever is configured operator-side.
- `q` (string, required): Search query.

### `instant_answer` (~85 tokens)

Instant answer (keyless)

DuckDuckGo Instant Answer API — definitions, entities, and quick facts. Returns a normalized answer with heading, type (abstract/answer/disambiguation), source, sourceUrl, optional image/definition, and relatedTopics, plus a meta envelope. Not a full web SERP; use web_search for that. Works with no API key.

Input parameters:

- `q` (string, required): Query.

### `fetch_url` (~169 tokens)

Fetch a URL as clean text/markdown (RAG-ready)

Fetches any public http(s) URL, strips boilerplate (scripts, nav, footer, ads), and returns clean text or markdown ready for an LLM context window. SSRF-guarded — refuses private/loopback/internal hosts. Returns url, title, format, length, content (and finalUrl when redirected, plus up to 50 extracted links when links=true), with a meta envelope. Works with no API key.

Input parameters:

- `format` (string): Output format. Default text.
- `links` (boolean): Also return up to 50 extracted links. Default false.
- `maxChars` (integer): Max characters of content returned, clamped 500-500000. Default 100000.
- `url` (string, required): The URL to fetch (public http/https only).

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/isaiahdupree-agentsearch-mcp/agentsearch-mcp#diagnostics

## Score history

- 2026-08-03: 74
- 2026-08-02: 73
- 2026-08-01: 73

## Links

- Remote endpoint: https://agentsearch-mcp.vercel.app/mcp
- Repository: https://github.com/IsaiahDupree/agentsearch-mcp
- Website: https://agentsearch-mcp.vercel.app/
- Changelog RSS feed: https://verifymcp.io/servers/isaiahdupree-agentsearch-mcp/agentsearch-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/isaiahdupree-agentsearch-mcp/agentsearch-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/isaiahdupree-agentsearch-mcp/agentsearch-mcp
