exa-search

exa-search is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 31 tokens per session (494 once invoked), scanned A, original, MIT.

A search workflow for discovering relevant websites, people, companies, products, or documentation and ranking sources for later research. It uses Exa, a web search service, and requires an Exa API key.

In plain words
What is it for?
Use it to find authoritative sources, discover entities, build a list of citations, and retrieve short evidence snippets.
Why use it?
It helps research start with useful source candidates instead of relying on random or poorly ranked search results.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to find authoritative sources, discover entities, build a list of citations, and retrieve short evidence snippets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/exa-search
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LuuOW/meridian-mcp --skill exa-search
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for exa-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/exa-search/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/exa-search)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/exa-search"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/exa-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for exa-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/exa-search"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/exa-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 494 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.00494
Opus 5 $0.00015 $0.00247
Sonnet 5 $0.00006 $0.00099
Haiku 4.5 $0.00003 $0.00049

Measured 11d ago against content hash fc2e3fec7f6c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

exa-search scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/exa-search/SKILL.md · 81 lines

What it actually says

Use this when the task begins with discovery rather than known URLs.

Best Uses

  • find authoritative sources for a topic
  • discover entities, people, companies, products, or docs pages
  • build candidate citation sets before extraction
  • rank likely-useful pages for downstream summarization

Required Env

  • EXA_API_KEY

Output Priorities

Return a compact evidence set:

  • title
  • url
  • snippet
  • reason selected
  • confidence

Do not fetch full page content unless the task explicitly needs it or the runtime has a lightweight Exa contents endpoint wired.

Query Patterns

import os
import httpx

EXA_API_KEY = os.environ["EXA_API_KEY"]

async def exa_search(query: str, num_results: int = 5) -> dict:
    async with httpx.AsyncClient(timeout=30) as client:
        resp = await client.post(
            "https://api.exa.ai/search",
            headers={
                "x-api-key": EXA_API_KEY,
                "Content-Type": "application/json",
            },
            json={
                "query": query,
                "numResults": num_results,
                "useAutoprompt": True,
                "type": "auto",
            },
        )
        resp.raise_for_status()
        return resp.json()

Selection Heuristics

Prefer sources that are:

  • primary or official when the task is factual
  • recent when the task is temporal
  • direct documentation when the task is technical
  • high-signal niche sources over generic SEO pages

Avoid

  • deep extraction work when URLs are already known
  • hostile surfaces that need rendering or proxying
  • SERP capture tasks

Hand-off Rules

  • Pass chosen URLs to firecrawl-extract for content capture.
  • Escalate to brightdata-collection only if discovery must happen on a blocked or geo-specific surface.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 81 lines · 31 tokens per session scan A fc2e3fec7f6c

Subscribe to this mod's changes

exa-search is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed today), licensed MIT. It adds 31 tokens to every session and 494 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories