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

# Context.dev: Contextdev Get Monitor Limits

> Monitor limits. Context.dev Contextdev Get Monitor Limits reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Monitor limits.

<Info>
  Tool ID: `contextdev_get_monitor_limits`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'contextdev_get_monitor_limits',
  {},
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute contextdev_get_monitor_limits --input '{}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "monitors_used": 123,
    "monitors_limit": 123,
    "plan": "free"
  }
}
```

Use `deepline tools get contextdev_get_monitor_limits --json` for the latest machine-readable contract.

## Input reference

Returns how many monitors the account has and the maximum it allows.

This action does not require input fields.

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns how many monitors the account has and the maximum it allows.",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                         | Type                                      | Required | Default | Details                                     |
| ---------------------------- | ----------------------------------------- | -------- | ------- | ------------------------------------------- |
| `result.data`                | `object`                                  | Yes      | —       | —                                           |
| `result.data.monitors_used`  | `integer`                                 | Yes      | —       | —                                           |
| `result.data.monitors_limit` | `integer`                                 | Yes      | —       | —                                           |
| `result.data.plan`           | `"free" \| "starter" \| "pro" \| "scale"` | Yes      | —       | Allowed: `free`, `starter`, `pro`, `scale`. |
| `result.meta`                | `object`                                  | No       | —       | —                                           |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {
        "type": "object",
        "properties": {
          "monitors_used": {
            "type": "integer"
          },
          "monitors_limit": {
            "type": "integer"
          },
          "plan": {
            "type": "string",
            "enum": [
              "free",
              "starter",
              "pro",
              "scale"
            ]
          }
        },
        "required": [
          "monitors_used",
          "monitors_limit",
          "plan"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Context.dev provider guide](/docs/providers/contextdev/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
