> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.polytomic.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.polytomic.com/_mcp/server.

# Seam AI

Supports:
* ✅ Enrichment
* ✅ Connection Proxy




## Connection

### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>apikey_id</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">API key ID</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>apikey_secret</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">API key secret</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>base_url</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Alternative base URL<br/><br/>Alternate environment API URL (including any necessary paths</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>


#### Example

```json
{
  "name": "Seam AI connection",
  "type": "seamai",
  "configuration": {
    "apikey_id": "9snbax8ij4hvAvBv3ap3EpQ",
    "apikey_secret": "9snbax8ij4hvAvBv3ap3EpQ",
    "base_url": ""
  }
}
```

## Model Sync
### Enrichment
#### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>enricher</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">ID of enricher to use</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>


#### Example
```json
{
  ...
  "configuration": {
    "enricher": "smdLlGCX8SuwOIrW3rWQGU"
  }
}
```