# Mezmo

Mezmo provides a comprehensive platform for log management and telemetry data processing, enabling organizations to collect, analyze, and manage their log data efficiently.

- **Category:** server monitoring
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 36
- **Triggers:** 0
- **Slug:** `MEZMO`
- **Version:** 20260227_00

## Tools

### Create Category

**Slug:** `MEZMO_CREATE_CATEGORY`

Tool to create a new category for views, boards, or screens in Mezmo. Use when organizing Mezmo resources into categories.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The name of the category to create. |
| `category_type` | string ("views" | "boards" | "screens") | Yes | The type of category to create. Valid values: 'views', 'boards', or 'screens'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Ingestion Exclusion Rule

**Slug:** `MEZMO_CREATE_INGESTION_EXCLUSION`

Tool to create an exclusion rule for log ingestion to control costs. Use this when you need to prevent specific logs from being ingested or stored based on query patterns. Exclusion rules help reduce ingestion costs by filtering out debug logs, test environment logs, or other non-essential log data.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `query` | string | Yes | Query string to match logs for exclusion. Use log field syntax (e.g., 'level:debug', 'app:test-service', 'level:info AND environment:staging'). Matched logs will be excluded from ingestion to control costs. |
| `title` | string | Yes | Descriptive title/name for the exclusion rule. Should clearly identify the purpose of the rule. |
| `active` | boolean | No | Whether the exclusion rule is active. If true, the rule will immediately apply to incoming logs. Defaults to false if not specified. |
| `indexonly` | boolean | No | Whether to only index but not store the matched logs. If true, logs are indexed for search but not stored, saving storage costs. Defaults to true if not specified. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create API Key

**Slug:** `MEZMO_CREATE_KEY`

Tool to create a new API key (ingestion or service key) in Mezmo. The API auto-generates a unique name for the key. Use when you need to provision a new key for log ingestion or API access.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `type` | string ("ingestion") | Yes | Type of API key to create. Currently supports 'ingestion' for ingestion keys. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Member Invitation

**Slug:** `MEZMO_CREATE_MEMBER`

Tool to invite a new member to the Mezmo organization with a specified role. Use this to send invitations to team members and optionally assign them to specific groups.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `role` | string | Yes | Role to assign to the member (e.g., 'member', 'admin', 'viewer') |
| `email` | string | Yes | Email address of the member to invite to the organization |
| `groups` | array | No | Array of group IDs to assign the member to. If not provided, member will not be assigned to any groups |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Preset Alert

**Slug:** `MEZMO_CREATE_PRESET_ALERT`

Tool to create a new preset alert in Mezmo with specified name and notification channels. Use this to configure alerts that can be triggered based on log conditions. Supports email, PagerDuty, and webhook notification channels.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the preset alert to create |
| `channels` | array | Yes | Array of notification channel configurations for the alert. At least one channel must be specified. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create View

**Slug:** `MEZMO_CREATE_VIEW`

Tool to create a new Mezmo view with filtering and alert configuration. Use when you need to set up custom log views with specific filters (query, hosts, apps, levels, tags) and optional alert channels (email, PagerDuty, webhook). At least one filter parameter must be provided in addition to the view name.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `apps` | array | No | Filter by application names. At least one filter parameter (query, hosts, apps, levels, or tags) must be provided. |
| `name` | string | Yes | Name of the view to create |
| `tags` | array | No | Filter by tags. At least one filter parameter (query, hosts, apps, levels, or tags) must be provided. |
| `hosts` | array | No | Filter by specific hostnames. At least one filter parameter (query, hosts, apps, levels, or tags) must be provided. |
| `query` | string | No | Search query to filter logs in the view (e.g., 'error OR warning'). At least one filter parameter (query, hosts, apps, levels, or tags) must be provided. |
| `levels` | array | No | Filter by log severity levels (e.g., 'ERROR', 'WARN', 'INFO', 'DEBUG'). At least one filter parameter (query, hosts, apps, levels, or tags) must be provided. |
| `categories` | array | No | Filter by log categories |
| `email_channel` | object | No | Email notification channel configuration. |
| `webhook_channel` | object | No | Webhook notification channel configuration. |
| `pagerduty_channel` | object | No | PagerDuty notification channel configuration. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Category

**Slug:** `MEZMO_DELETE_CATEGORY`

Tool to delete a category by its type and ID. Use when you need to remove a view, board, or screen category from Mezmo configuration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `category_id` | string | Yes | Unique identifier of the category to delete |
| `category_type` | string ("views" | "boards" | "screens") | Yes | Type of category to delete (views, boards, or screens) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Ingestion Exclusion

**Slug:** `MEZMO_DELETE_INGESTION_EXCLUSION`

Tool to remove an ingestion exclusion rule by its ID. Use when you need to delete a specific exclusion rule from Mezmo's ingestion configuration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `exclusion_id` | string | Yes | The unique identifier of the ingestion exclusion rule to delete |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete API Key

**Slug:** `MEZMO_DELETE_KEY`

Tool to delete an API key by its unique identifier. Use when you need to remove an ingestion key from Mezmo to revoke access.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `key_id` | string | Yes | The unique identifier of the API key to delete |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Organization Member

**Slug:** `MEZMO_DELETE_MEMBER`

Tool to remove a member from the organization by their email address. Use when you need to revoke a user's access to the organization.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `member_id` | string | Yes | Email address of the member to remove from the organization |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Pipeline Alert

**Slug:** `MEZMO_DELETE_PIPELINE_ALERT`

Tool to delete an alert for a specific component within a pipeline. Use after confirming pipeline ID, component kind, component ID, and alert ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `alert_id` | string | Yes | Unique identifier of the alert to delete |
| `pipeline_id` | string | Yes | Unique identifier of the pipeline containing the component |
| `component_id` | string | Yes | Unique identifier of the component containing the alert |
| `component_kind` | string ("source" | "transform" | "sink") | Yes | Type of component within the pipeline (e.g., source, transform, sink) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Preset Alert

**Slug:** `MEZMO_DELETE_PRESET_ALERT`

Tool to delete a preset alert by its ID. Use after confirming the preset alert ID exists.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `preset_id` | string | Yes | Unique identifier of the preset alert to delete |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete View

**Slug:** `MEZMO_DELETE_VIEW`

Tool to delete a view by its ID. Use when you need to remove a specific view from Mezmo.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `viewid` | string | Yes | ID of the view to delete |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Preset Alert

**Slug:** `MEZMO_GET_ALERT`

Tool to retrieve details of a specific preset alert by its ID. Use when you need to view the configuration of an existing alert.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `presetid` | string | Yes | ID of the preset alert to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Category

**Slug:** `MEZMO_GET_CATEGORY`

Tool to retrieve a category configuration by its type and ID. Use when you need to fetch details about a specific Mezmo category (view, board, or screen).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `category_id` | string | Yes | Unique identifier of the category to retrieve. Can be obtained from POST /v1/config/categories/{categoryType} or by listing categories |
| `category_type` | string ("views" | "boards" | "screens") | Yes | Type of category to retrieve (views, boards, or screens) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Index Rate Alert Configuration

**Slug:** `MEZMO_GET_INDEX_RATE_ALERT`

Tool to retrieve current index rate alert settings for the Mezmo account. Use this to check if index rate alerting is enabled and view configured thresholds and notification channels.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Ingestion Exclusion Rule

**Slug:** `MEZMO_GET_INGESTION_EXCLUSION`

Tool to retrieve an ingestion exclusion rule by its ID. Use when you need to fetch details of a specific exclusion rule.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `exclusionId` | string | Yes | The ID of the ingestion exclusion rule to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Ingestion Status

**Slug:** `MEZMO_GET_INGESTION_STATUS`

Tool to get the current ingestion status for the Mezmo account. Use when you need to check whether log ingestion is currently active or paused.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get API Key

**Slug:** `MEZMO_GET_KEY`

Tool to retrieve an API key configuration by its ID. Use when you need to fetch details about a specific Mezmo API key.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `key_id` | string | Yes | The unique identifier of the API key to retrieve (MongoDB ObjectId format) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Member

**Slug:** `MEZMO_GET_MEMBER`

Tool to retrieve member information by their ID. Use when you need to fetch details about a specific member in your Mezmo account.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `member_id` | string | Yes | Unique identifier of the member. Can be an email address or member ID. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Stream Configuration

**Slug:** `MEZMO_GET_STREAM_CONFIG`

Tool to retrieve the current event streaming configuration for the Mezmo account. Use when you need to check if streaming is enabled and get streaming settings. Returns error details if streaming is unavailable on the account/plan.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get View Details

**Slug:** `MEZMO_GET_VIEW`

Tool to retrieve details of a specific view by its ID. Use when you need to fetch view configuration including name, query, filters, and other attributes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `view_id` | string | Yes | Unique identifier of the view to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Ingest Logs to Mezmo

**Slug:** `MEZMO_INGEST_LOGS`

Ingest log lines into Mezmo Log Analysis. Use this tool to send structured log data from hosts, applications, or services to Mezmo for centralized logging, analysis, and alerting. Logs are sent to the Mezmo ingestion endpoint and will appear in the Mezmo dashboard.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `ip` | string | No | IP address of the host (optional, for additional host identification). |
| `mac` | string | No | MAC address of the host (optional, for additional host identification). |
| `logs` | array | Yes | Array of log lines to ingest. Each log line must have at least a 'line' field with the log message. |
| `tags` | string | No | Comma-separated tags for categorizing logs (e.g., 'production,critical'). |
| `hostname` | string | Yes | Hostname of the server or device sending the logs. Used for grouping and filtering logs in Mezmo. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Preset Alerts

**Slug:** `MEZMO_LIST_ALERTS`

Tool to list all preset alerts configured for the Mezmo account. Use when you need to retrieve notification rules that trigger based on log patterns. Returns preset alert configurations including their channels (email, PagerDuty, webhook).

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List API Keys

**Slug:** `MEZMO_LIST_KEYS`

Tool to list all API keys and ingestion keys configured for the account. Use when you need to retrieve all keys for viewing or management purposes.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Members

**Slug:** `MEZMO_LIST_MEMBERS`

Tool to list all team members in the Mezmo account configuration. Use when you need to retrieve information about all members in the organization.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Telemetry Pipelines

**Slug:** `MEZMO_LIST_PIPELINES`

Tool to list all telemetry pipelines configured for the account. Use when you need to view or retrieve information about existing pipelines that manage the flow and transformation of telemetry data.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Views

**Slug:** `MEZMO_LIST_VIEWS`

Tool to list all views configured for the account. Views are saved search queries and filters for quick access to specific log data.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Resume Log Ingestion

**Slug:** `MEZMO_RESUME_INGESTION`

Tool to resume log ingestion for the account after it has been stopped. Use when you need to re-enable log collection after a pause.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Category

**Slug:** `MEZMO_UPDATE_CATEGORY`

Tool to update a category name by its type and ID. Use when you need to rename an existing category in Mezmo.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | New name for the category |
| `category_id` | string | Yes | Unique identifier of the category to update. Obtained from POST /v1/config/categories/{categoryType} or GET endpoints |
| `category_type` | string ("views" | "boards" | "screens") | Yes | Type of category to update. Valid values: 'views', 'boards', 'screens' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Index Rate Alert Configuration

**Slug:** `MEZMO_UPDATE_INDEX_RATE_ALERT`

Tool to configure index rate alerting settings including thresholds and notification channels. Use this when you need to set up or modify alerts for unusual log ingestion rates based on absolute line counts or statistical deviations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `enabled` | boolean | Yes | Whether index rate alerting is enabled |
| `channels` | object | Yes | Notification channels configuration specifying where alerts should be sent |
| `frequency` | string ("hourly" | "daily") | Yes | Notification frequency for sending index rate alerts |
| `max_lines` | integer | No | Maximum number of lines per hour threshold for triggering alerts. Set to null to disable this threshold. |
| `max_z_score` | number | No | Maximum Z-score (standard deviations above 30-day average) for triggering alerts. Set to null to disable this threshold. |
| `threshold_alert` | string ("separate" | "both") | Yes | Alert trigger mode: 'separate' triggers alert when either threshold is exceeded, 'both' triggers only when both thresholds are exceeded simultaneously |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Ingestion Exclusion Rule

**Slug:** `MEZMO_UPDATE_INGESTION_EXCLUSION`

Tool to update an existing exclusion rule by its ID. Use when you need to modify the query, active status, indexonly behavior, or title of an existing exclusion rule. At least one field (query, active, indexonly, or title) must be provided for update.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | ID of the exclusion rule to update |
| `query` | string | No | Query string to match logs for exclusion (e.g., 'level:warn', 'app:production') |
| `title` | string | No | Title/name of the exclusion rule for identification |
| `active` | boolean | No | Whether the exclusion rule is active. Set to false to disable the rule without deleting it. |
| `indexonly` | boolean | No | Whether to only exclude from indexing but keep in ingestion. When true, logs are ingested but not indexed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update API Key

**Slug:** `MEZMO_UPDATE_KEY`

Tool to update an API key name by its ID. Use when you need to rename an existing Mezmo API key.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The new name for the API key |
| `key_id` | string | Yes | The unique identifier of the API key to update |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Member Role and Groups

**Slug:** `MEZMO_UPDATE_MEMBER`

Tool to update a member's role and group assignments by their email address. Use when you need to change a member's permissions or group memberships.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `role` | string | Yes | The role to assign to the member. Common roles include 'owner', 'admin', and 'member'. |
| `groups` | array | No | Array of group identifiers the member should belong to. Empty array removes the member from all groups. |
| `member_id` | string | Yes | Email address of the member to update. This serves as the unique identifier for the member. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Preset Alert

**Slug:** `MEZMO_UPDATE_PRESET_ALERT`

Tool to update an existing preset alert by ID. Allows modifying the alert's name and notification channels. Use when you need to change alert configuration after creation. Requires full resource representation with both name and channels.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Updated name of the preset alert |
| `channels` | array | Yes | Array of notification channel objects. Each channel must have integration type, triggerlimit, and integration-specific fields (e.g., emails for email integration). At least one channel is required. |
| `presetid` | string | Yes | ID of the preset alert to update |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Mezmo View

**Slug:** `MEZMO_UPDATE_VIEW`

Tool to update an existing Mezmo view by its ID. Use when you need to modify a view's name or search query.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The name/title of the view |
| `query` | string | No | The search query string that defines what logs should be displayed in this view |
| `viewid` | string | Yes | ID of the view to update |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
