> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seamless.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Search

> search_contacts and search_companies MCP tools.

Search the Seamless.AI database for contacts and companies. Does not consume credits.

| Tool               | Description                                                                                                | Risk   | Schema                                  |
| ------------------ | ---------------------------------------------------------------------------------------------------------- | ------ | --------------------------------------- |
| `search_contacts`  | Search contacts by company, job title, seniority, location, industry, and more. Returns a paginated table. | `read` | [#search\_contacts](#search_contacts)   |
| `search_companies` | Search companies by name, domain, industry, size, revenue, and more. Returns a paginated table.            | `read` | [#search\_companies](#search_companies) |

## search\_contacts

<ParamField path="companyName" type="string[]">
  Filter by company names.
</ParamField>

<ParamField path="jobTitle" type="string[]">
  Filter by job title (not `title`).
</ParamField>

<ParamField path="fullname" type="string[]">
  Filter by contact full name (not `contactName`).
</ParamField>

<ParamField path="limit" default="50" type="integer">
  Results per page.
</ParamField>

### Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "search_contacts",
    "arguments": {
      "companyName": ["Acme Corp"],
      "jobTitle": ["VP Sales"],
      "seniority": ["VP", "Director"],
      "limit": 10
    }
  },
  "id": 1
}
```

## search\_companies

<ParamField path="companyName" type="string[]">
  Filter by company names.
</ParamField>

### Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "search_companies",
    "arguments": {
      "companyName": ["Acme Corp"],
      "limit": 10
    }
  },
  "id": 1
}
```
