find_similar

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

Find pages similar to a given URL using neural/semantic matching. Returns title, URL, relevance score, and published date. Example: find_similar({ url: “https://example.com/great-article”, num_results: 10 })

Parameters

NameTypeRequiredDescription
urlstringyesThe URL to find semantically similar pages for.
num_resultsnumbernoNumber of results to return (default 10, max 25)
_apiKeystringnoOptional — your own Exa API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "url": "https://example.com/great-article",
  "num_results": 10
}

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":"find_similar","arguments":{"url":"https://example.com/great-article","num_results":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('find_similar', {
  "url": "https://example.com/great-article",
  "num_results": 10
});

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