ClaudeResearch

exa-search

Neural search via Exa MCP for web, code, and company research. Use when the user needs web search, code examples, company intel, people lookup, or AI-powered deep research with Exa's neural search engine.

144,923 stars
Complexity: medium

About this skill

Leverage the power of Exa's advanced neural search engine directly within your AI agent. This skill provides comprehensive, real-time access to the web, specialized code repositories, company intelligence, and professional profiles. Designed primarily for Claude AI agents and deeply integrated with software development workflows, it's an indispensable tool for engineers, researchers, and anyone needing deep, context-aware information retrieval. It excels at uncovering current events, technical documentation, competitive analysis, and background research crucial for robust development and strategic decision-making.

Best use case

Enabling an AI agent to perform deep, real-time research across various domains, including current events, technical documentation, company intelligence, and professional profiles, for development, business, or general knowledge tasks.

Neural search via Exa MCP for web, code, and company research. Use when the user needs web search, code examples, company intel, people lookup, or AI-powered deep research with Exa's neural search engine.

Accurate, relevant, and timely search results compiled from the web, code repositories, company databases, or professional profiles, powered by Exa's neural engine, providing comprehensive insights for various research needs.

Practical example

Example input

What's the latest news on quantum computing advancements and can you find me a Python library for parallel processing?

Example output

Exa Search initiated for "latest news on quantum computing advancements" and "Python library for parallel processing."

**Quantum Computing Advancements (via Exa Search):**
- *Nature Photonics, Jan 2024:* "Breakthrough in scalable quantum computing with new silicon-based qubits." [Link]
- *TechCrunch, Feb 2024:* "Series C funding announced for 'QubitFlow' startup, focusing on quantum algorithm optimization." [Link]
- *IBM Blog, March 2024:* "New roadmap reveals path to 1000+ qubit systems by 2026." [Link]

**Python Libraries for Parallel Processing (via Exa Search):**
- **`multiprocessing`**: Built-in Python library for spawning processes using an API similar to the `threading` module. Ideal for CPU-bound tasks.
- **`concurrent.futures`**: High-level interface for asynchronously executing callables, offering `ThreadPoolExecutor` and `ProcessPoolExecutor`.
- **`joblib`**: Provides tools for parallel computing and caching Python functions, often used for machine learning pipelines.
- **`Dask`**: Flexible library for parallel computing in Python, scaling NumPy, pandas, and scikit-learn workloads.

When to use this skill

  • The user needs current web information or news.
  • Searching for code examples, API documentation, or technical references.
  • Researching companies, competitors, market players, or industry trends.
  • Finding professional profiles or people within a specific domain.

When not to use this skill

  • When the required information is strictly internal, private, or not accessible via public web search (unless Exa MCP is configured to access such data).
  • When the query can be directly answered by the AI agent's existing knowledge base without requiring external, real-time validation or deeper research.
  • When the user explicitly requests information from a source other than Exa's search engine.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/exa-search/SKILL.md --create-dirs "https://raw.githubusercontent.com/affaan-m/everything-claude-code/main/.agents/skills/exa-search/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/exa-search/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How exa-search Compares

Feature / Agentexa-searchStandard Approach
Platform SupportClaudeLimited / Varies
Context Awareness High Baseline
Installation ComplexitymediumN/A

Frequently Asked Questions

What does this skill do?

Neural search via Exa MCP for web, code, and company research. Use when the user needs web search, code examples, company intel, people lookup, or AI-powered deep research with Exa's neural search engine.

Which AI agents support this skill?

This skill is designed for Claude.

How difficult is it to install?

The installation complexity is rated as medium. You can find the installation instructions above.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Exa Search

Neural search for web content, code, companies, and people via the Exa MCP server.

## When to Activate

- User needs current web information or news
- Searching for code examples, API docs, or technical references
- Researching companies, competitors, or market players
- Finding professional profiles or people in a domain
- Running background research for any development task
- User says "search for", "look up", "find", or "what's the latest on"

## MCP Requirement

Exa MCP server must be configured. Add to `~/.claude.json`:

```json
"exa-web-search": {
  "command": "npx",
  "args": ["-y", "exa-mcp-server"],
  "env": { "EXA_API_KEY": "YOUR_EXA_API_KEY_HERE" }
}
```

Get an API key at [exa.ai](https://exa.ai).

## Core Tools

### web_search_exa
General web search for current information, news, or facts.

```
web_search_exa(query: "latest AI developments 2026", numResults: 5)
```

**Parameters:**

| Param | Type | Default | Notes |
|-------|------|---------|-------|
| `query` | string | required | Search query |
| `numResults` | number | 8 | Number of results |

### web_search_advanced_exa
Filtered search with domain and date constraints.

```
web_search_advanced_exa(
  query: "React Server Components best practices",
  numResults: 5,
  includeDomains: ["github.com", "react.dev"],
  startPublishedDate: "2025-01-01"
)
```

**Parameters:**

| Param | Type | Default | Notes |
|-------|------|---------|-------|
| `query` | string | required | Search query |
| `numResults` | number | 8 | Number of results |
| `includeDomains` | string[] | none | Limit to specific domains |
| `excludeDomains` | string[] | none | Exclude specific domains |
| `startPublishedDate` | string | none | ISO date filter (start) |
| `endPublishedDate` | string | none | ISO date filter (end) |

### get_code_context_exa
Find code examples and documentation from GitHub, Stack Overflow, and docs sites.

```
get_code_context_exa(query: "Python asyncio patterns", tokensNum: 3000)
```

**Parameters:**

| Param | Type | Default | Notes |
|-------|------|---------|-------|
| `query` | string | required | Code or API search query |
| `tokensNum` | number | 5000 | Content tokens (1000-50000) |

### company_research_exa
Research companies for business intelligence and news.

```
company_research_exa(companyName: "Anthropic", numResults: 5)
```

**Parameters:**

| Param | Type | Default | Notes |
|-------|------|---------|-------|
| `companyName` | string | required | Company name |
| `numResults` | number | 5 | Number of results |

### people_search_exa
Find professional profiles and bios.

```
people_search_exa(query: "AI safety researchers at Anthropic", numResults: 5)
```

### crawling_exa
Extract full page content from a URL.

```
crawling_exa(url: "https://example.com/article", tokensNum: 5000)
```

**Parameters:**

| Param | Type | Default | Notes |
|-------|------|---------|-------|
| `url` | string | required | URL to extract |
| `tokensNum` | number | 5000 | Content tokens |

### deep_researcher_start / deep_researcher_check
Start an AI research agent that runs asynchronously.

```
# Start research
deep_researcher_start(query: "comprehensive analysis of AI code editors in 2026")

# Check status (returns results when complete)
deep_researcher_check(researchId: "<id from start>")
```

## Usage Patterns

### Quick Lookup
```
web_search_exa(query: "Node.js 22 new features", numResults: 3)
```

### Code Research
```
get_code_context_exa(query: "Rust error handling patterns Result type", tokensNum: 3000)
```

### Company Due Diligence
```
company_research_exa(companyName: "Vercel", numResults: 5)
web_search_advanced_exa(query: "Vercel funding valuation 2026", numResults: 3)
```

### Technical Deep Dive
```
# Start async research
deep_researcher_start(query: "WebAssembly component model status and adoption")
# ... do other work ...
deep_researcher_check(researchId: "<id>")
```

## Tips

- Use `web_search_exa` for broad queries, `web_search_advanced_exa` for filtered results
- Lower `tokensNum` (1000-2000) for focused code snippets, higher (5000+) for comprehensive context
- Combine `company_research_exa` with `web_search_advanced_exa` for thorough company analysis
- Use `crawling_exa` to get full content from specific URLs found in search results
- `deep_researcher_start` is best for comprehensive topics that benefit from AI synthesis

## Related Skills

- `deep-research` — Full research workflow using firecrawl + exa together
- `market-research` — Business-oriented research with decision frameworks

Related Skills

deep-research

144923
from affaan-m/everything-claude-code

Multi-source deep research using firecrawl and exa MCPs. Searches the web, synthesizes findings, and delivers cited reports with source attribution. Use when the user wants thorough research on any topic with evidence and citations.

ResearchClaude

deep-research

31392
from sickn33/antigravity-awesome-skills

Run autonomous research tasks that plan, search, read, and synthesize information into comprehensive reports.

ResearchClaudeGemini

last30days

31392
from sickn33/antigravity-awesome-skills

Research a topic from the last 30 days on Reddit + X + Web, become an expert, and write copy-paste-ready prompts for the user's target tool.

ResearchClaude

infinite-gratitude

31392
from sickn33/antigravity-awesome-skills

Multi-agent research skill for parallel research execution (10 agents, battle-tested with real case studies).

ResearchClaude

citation-management

31392
from sickn33/antigravity-awesome-skills

Manage citations systematically throughout the research and writing process.

ResearchClaude

search-first

144923
from affaan-m/everything-claude-code

Research-before-coding workflow. Search for existing tools, libraries, and patterns before writing custom code. Systematizes the "search for existing solutions before implementing" approach. Use when starting new features or adding functionality.

DevelopmentClaude

market-research

144923
from affaan-m/everything-claude-code

Conduct market research, competitive analysis, investor due diligence, and industry intelligence with source attribution and decision-oriented summaries. Use when the user wants market sizing, competitor comparisons, fund research, technology scans, or research that informs business decisions.

Business Intelligence & AnalyticsClaude

workspace-surface-audit

144923
from affaan-m/everything-claude-code

Audit the active repo, MCP servers, plugins, connectors, env surfaces, and harness setup, then recommend the highest-value ECC-native skills, hooks, agents, and operator workflows. Use when the user wants help setting up Claude Code or understanding what capabilities are actually available in their environment.

DevelopmentClaude

ui-demo

144923
from affaan-m/everything-claude-code

Record polished UI demo videos using Playwright. Use when the user asks to create a demo, walkthrough, screen recording, or tutorial video of a web application. Produces WebM videos with visible cursor, natural pacing, and professional feel.

Developer ToolsClaude

token-budget-advisor

144923
from affaan-m/everything-claude-code

Offers the user an informed choice about how much response depth to consume before answering. Use this skill when the user explicitly wants to control response length, depth, or token budget. TRIGGER when: "token budget", "token count", "token usage", "token limit", "response length", "answer depth", "short version", "brief answer", "detailed answer", "exhaustive answer", "respuesta corta vs larga", "cuántos tokens", "ahorrar tokens", "responde al 50%", "dame la versión corta", "quiero controlar cuánto usas", or clear variants where the user is explicitly asking to control answer size or depth. DO NOT TRIGGER when: user has already specified a level in the current session (maintain it), the request is clearly a one-word answer, or "token" refers to auth/session/payment tokens rather than response size.

Productivity & Content CreationClaude

skill-comply

144923
from affaan-m/everything-claude-code

Visualize whether skills, rules, and agent definitions are actually followed — auto-generates scenarios at 3 prompt strictness levels, runs agents, classifies behavioral sequences, and reports compliance rates with full tool call timelines

DevelopmentClaude

santa-method

144923
from affaan-m/everything-claude-code

Multi-agent adversarial verification with convergence loop. Two independent review agents must both pass before output ships.

Quality AssuranceClaude