search

Pack: exa · Endpoint: https://gateway.pipeworx.io/exa/mcp

Neural/semantic web search — find pages by meaning, not just keywords. Returns title, URL, published date, author, and relevance score. Optionally retrieve clean page text inline. Example: search({ query: “startups building AI agents for customer support”, num_results: 10, type: “neural” })

Parameters

NameTypeRequiredDescription
querystringyesThe search query — describe what you want by meaning, e.g. “recent research on protein folding with diffusion models”
num_resultsnumbernoNumber of results to return (default 10, max 25)
typestringnoSearch mode: ‘neural’ (semantic/meaning-based), ‘keyword’ (traditional), or ‘auto’ (Exa picks). Default ‘auto’.
include_textbooleannoIf true, include the clean parsed page text (up to 2000 chars) for each result. Default false.
categorystringnoOptional focus category, e.g. ‘company’, ‘research paper’, ‘news’, ‘pdf’, ‘github’, ‘tweet’.
_apiKeystringnoOptional — your own Exa API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "query": "recent research on protein folding with diffusion models",
  "num_results": 10,
  "type": "neural"
}

curl

curl -X POST https://gateway.pipeworx.io/exa/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search","arguments":{"query":"recent research on protein folding with diffusion models","num_results":10,"type":"neural"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search', {
  "query": "recent research on protein folding with diffusion models",
  "num_results": 10,
  "type": "neural"
});

More examples

{
  "query": "startups building AI agents for customer support",
  "num_results": 5,
  "type": "neural",
  "include_text": true,
  "category": "company"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "exa": {
      "url": "https://gateway.pipeworx.io/exa/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026