> ## 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.

# User

> get_credits, get_my_contacts, and get_my_companies MCP tools.

Retrieve authenticated user data including credits and saved records.

| Tool               | Description                                                   | Risk   | Schema                                   |
| ------------------ | ------------------------------------------------------------- | ------ | ---------------------------------------- |
| `get_credits`      | Current credit balance and usage.                             | `read` | [#get\_credits](#get_credits)            |
| `get_my_contacts`  | Saved/researched contacts within a date range (max 30 days).  | `read` | [#get\_my\_contacts](#get_my_contacts)   |
| `get_my_companies` | Saved/researched companies within a date range (max 30 days). | `read` | [#get\_my\_companies](#get_my_companies) |

## get\_credits

### Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_credits",
    "arguments": {}
  },
  "id": 1
}
```

## get\_my\_contacts

<ParamField path="startDate" type="string">
  ISO 8601 start (e.g. `2026-05-01T00:00:00Z`). Max range 30 days.
</ParamField>

<ParamField path="endDate" type="string">
  ISO 8601 end (e.g. `2026-05-18T23:59:59Z`).
</ParamField>

### Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_my_contacts",
    "arguments": {
      "startDate": "2026-05-01T00:00:00Z",
      "endDate": "2026-05-18T23:59:59Z"
    }
  },
  "id": 1
}
```

## get\_my\_companies

### Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_my_companies",
    "arguments": {
      "startDate": "2026-05-01T00:00:00Z",
      "endDate": "2026-05-18T23:59:59Z"
    }
  },
  "id": 1
}
```
