# Slack MCP Actor (`red.cars/slack-mcp`) Actor

Slack MCP for AI agents — 66 tools for messaging, channels, users, files, and analytics. Wraps the Slack PP CLI as a standby MCP server.

- **URL**: https://apify.com/red.cars/slack-mcp.md
- **Developed by:** [AutomateLab](https://apify.com/red.cars) (community)
- **Categories:** MCP servers, AI
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.01 / 1,000 result items

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Slack Messaging, Channels, and User Data — MCP Server

Get Slack messages, channels, users, files, reactions, and team analytics via the Slack PP CLI wrapped as an Apify MCP server. 66 tools for AI agents building Slack-aware workflows, from fetching conversation history to managing pins, stars, reminders, and Do Not Disturb status.

### Features

- **66 Slack tools** covering messaging, channels, users, files, reactions, pins, stars, reminders, usergroups, DND, search, team analytics, and emoji
- **MCP protocol** — standard `tools/list` and `tools/call` interface compatible with Claude, Cursor, and other MCP clients
- **Batch mode** — run single tool calls via Apify actor input with `INPUT_STORE=1 apify run`
- **Standby mode** — long-running HTTP server on `/mcp` for persistent agent connections
- **Pay-per-event pricing** — granular per-tool billing, no monthly commitments
- **Auth tools** — `auth_test`, `auth_revoke`, `about` to verify and manage token lifecycle
- **Conversations** — list, history, info, create, archive, unarchive, invite, set purpose/topic, mark, members, replies
- **Messaging** — post, update, delete, scheduled messages, permalink retrieval
- **Users** — list, info, presence, profile get/set, lookup by email
- **Files** — upload, list, info, delete with full metadata
- **Reactions** — add, remove, list, get for any message
- **Pins & Stars** — list, add, remove for channels and items
- **Reminders** — add, list, complete, delete, info
- **Usergroups** — create, update, list, manage members
- **Search** — full Slack search across messages and content
- **Team** — billable info, access logs, billing data
- **DND** — Do Not Disturb status for self and team members
- **Emoji** — list custom emoji across the workspace

### Quick Start

#### Prerequisites

- Apify account
- Slack bot token (`SLACK_BOT_TOKEN`) with appropriate scopes

#### Installation

```bash
npm install
````

#### Build

```bash
npm run build
```

#### Run (batch mode)

```bash
## Example: list all Slack channels
echo '{"tool": "conversations_list", "params": {}}' | INPUT_STORE=1 apify run

## Example: get conversation history
echo '{"tool": "conversations_history", "params": {"channel": "C012AB3CD"}}' | INPUT_STORE=1 apify run

## Example: post a message
echo '{"tool": "messages_post_message", "params": {"channel": "C012AB3CD", "text": "Hello from Slack MCP!"}}' | INPUT_STORE=1 apify run

## Example: get user info
echo '{"tool": "users_info", "params": {"user": "U012AB3CD"}}' | INPUT_STORE=1 apify run

## Example: search messages
echo '{"tool": "search_messages", "params": {"query": "deployment"}}' | INPUT_STORE=1 apify run

## Example: list files
echo '{"tool": "files_list", "params": {}}' | INPUT_STORE=1 apify run
```

#### Run (standby / MCP server mode)

Set `SLACK_BOT_TOKEN` as an Apify secret, then:

```bash
apify run --use-model=stay-alive
```

The actor starts an HTTP server on port 3000 exposing `/mcp` for MCP `initialize`, `tools/list`, and `tools/call` requests.

#### MCP Client Example

```bash
## Call tools/call directly
curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"conversations_list","arguments":{}}}'
```

### Input

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| tool | string | yes | Slack tool name to call (e.g. `conversations_list`) |
| params | object | yes | Tool arguments as a JSON object |

### Tools

#### Auth

##### `about`

Returns information about the authenticated user and team.

##### `auth_test`

Verifies the Slack bot token is valid and returns team info.

##### `auth_revoke`

Revokes the current token, ending the session.

***

#### Conversations

##### `conversations_list`

Lists all channels in the workspace. Supports filtering by type (`public_channel`, `private_channel`, `im`, `mpim`).

##### `conversations_history`

Fetches message history for a channel. Requires `channel` parameter.

##### `conversations_info`

Returns detailed metadata for a specific channel.

##### `conversations_create`

Creates a new public or private channel.

##### `conversations_archive`

Archives a channel, removing it from the channel list.

##### `conversations_unarchive`

Reactivates a previously archived channel.

##### `conversations_invite`

Invites one or more users to a channel.

##### `conversations_set_purpose`

Sets the channel purpose/description.

##### `conversations_set_topic`

Sets the channel topic.

##### `conversations_mark`

Marks a channel as read up to a specific timestamp.

##### `conversations_members`

Lists all members of a channel.

##### `conversations_replies`

Fetches a thread's reply history (replies to a specific message).

***

#### Messages

##### `messages_post_message`

Sends a message to a channel, DM, or thread.

##### `messages_update_message`

Updates the text or metadata of an existing message.

##### `messages_delete_message`

Deletes a message from a channel or thread.

##### `messages_get_permalink`

Returns a shareable permalink URL for a specific message.

##### `messages_list_scheduled`

Lists scheduled messages pending delivery.

##### `messages_schedule_message`

Schedules a message for future delivery.

***

#### Files

##### `files_list`

Lists files uploaded to Slack, optionally filtered by channel or user.

##### `files_info`

Returns metadata for a specific file.

##### `files_upload`

Uploads a file to a channel or DM. Supports initial comment and thread targeting.

##### `files_delete`

Deletes a file from Slack.

***

#### Reactions

##### `reactions_list`

Lists all reactions to a message or item.

##### `reactions_add`

Adds a reaction emoji to a message.

##### `reactions_remove`

Removes a reaction emoji from a message.

##### `reactions_get`

Gets all reactions for a specific message.

***

#### Users

##### `users_list`

Lists all users in the workspace with their profiles and presence.

##### `users_info`

Returns detailed profile information for a specific user.

##### `users_get_presence`

Gets the current presence status (active, away) of a user.

##### `users_profile_get`

Retrieves a user's full profile including custom fields.

##### `users_profile_set`

Updates a user's profile fields.

##### `users_set_presence`

Sets your own presence status (active or away).

##### `users_lookup_by_email`

Looks up a user by their verified email address.

***

#### Usergroups

##### `usergroups_list`

Lists all usergroups in the workspace.

##### `usergroups_create`

Creates a new usergroup.

##### `usergroups_update`

Updates an existing usergroup's name, description, or handle.

##### `usergroups_users_list`

Lists the users in a usergroup.

##### `usergroups_users_update`

Updates the user list for a usergroup.

***

#### DND (Do Not Disturb)

##### `dnd_info`

Gets your own Do Not Disturb status.

##### `dnd_team_info`

Gets DND status for all team members.

##### `dnd_set_snooze`

Enables Do Not Disturb for a specified number of minutes.

##### `dnd_end_dnd`

Ends your own Do Not Disturb session immediately.

##### `dnd_end_snooze`

Ends the current snooze period.

***

#### Reminders

##### `reminders_list`

Lists all reminders for the authenticated user.

##### `reminders_add`

Creates a new reminder.

##### `reminders_complete`

Marks a reminder as complete.

##### `reminders_delete`

Deletes a reminder.

##### `reminders_info`

Returns details for a specific reminder.

***

#### Pins

##### `pins_list`

Lists all pinned items in a channel.

##### `pins_add`

Pins a message or file to a channel.

##### `pins_remove`

Removes a pin from a channel.

***

#### Stars

##### `stars_list`

Lists all starred items for the authenticated user.

##### `stars_add`

Stars an item (message, file, channel, or DM).

##### `stars_remove`

Removes a star from an item.

***

#### Search

##### `search`

Full Slack search across messages and files.

##### `search_messages`

Search specifically within message content.

***

#### Team

##### `team_info`

Returns information about the workspace.

##### `team_access_logs`

Returns the access logs for the workspace.

##### `team_billable_info`

Returns billing info for each workspace member.

***

#### Bots

##### `bots_info`

Returns information about bot users integrated into the workspace.

***

#### Emoji

##### `emoji_list`

Lists all custom emoji in the workspace.

***

#### SQL / Sync

##### `sql`

Executes a SQL query against Slack data (if configured on your workspace).

##### `sync`

Synchronizes Slack data with an external system.

***

### Output

All tools return a JSON object with the Slack API response. In batch mode, results are stored in the actor's default key-value store under `OUTPUT` and pushed as a dataset object:

```json
{
  "tool": "conversations_list",
  "result": { ... },
  "timestamp": "2026-05-19T12:00:00.000Z"
}
```

In standby MCP mode, tools return the raw Slack API response via the MCP `tools/call` result schema.

***

### Pricing

All tools use Pay-Per-Event (PPE) billing. Each tool invocation costs a fixed amount in USD:

| Tool | PPE Price |
|------|-----------|
| about | $0.01/call |
| auth\_test | $0.01/call |
| auth\_revoke | $0.03/call |
| conversations\_list | $0.03/call |
| conversations\_history | $0.03/call |
| conversations\_info | $0.03/call |
| conversations\_create | $0.05/call |
| conversations\_archive | $0.05/call |
| conversations\_unarchive | $0.05/call |
| conversations\_invite | $0.05/call |
| conversations\_set\_purpose | $0.05/call |
| conversations\_set\_topic | $0.05/call |
| conversations\_mark | $0.03/call |
| conversations\_members | $0.03/call |
| conversations\_replies | $0.03/call |
| messages\_post\_message | $0.05/call |
| messages\_update\_message | $0.05/call |
| messages\_delete\_message | $0.05/call |
| messages\_get\_permalink | $0.03/call |
| messages\_list\_scheduled | $0.03/call |
| messages\_schedule\_message | $0.05/call |
| files\_list | $0.03/call |
| files\_info | $0.03/call |
| files\_upload | $0.08/call |
| files\_delete | $0.05/call |
| reactions\_list | $0.03/call |
| reactions\_add | $0.05/call |
| reactions\_remove | $0.03/call |
| reactions\_get | $0.03/call |
| users\_list | $0.03/call |
| users\_info | $0.03/call |
| users\_get\_presence | $0.03/call |
| users\_profile\_get | $0.03/call |
| users\_profile\_set | $0.05/call |
| users\_set\_presence | $0.05/call |
| users\_lookup\_by\_email | $0.03/call |
| usergroups\_list | $0.03/call |
| usergroups\_create | $0.05/call |
| usergroups\_update | $0.05/call |
| usergroups\_users\_list | $0.03/call |
| usergroups\_users\_update | $0.05/call |
| dnd\_info | $0.03/call |
| dnd\_team\_info | $0.03/call |
| dnd\_set\_snooze | $0.03/call |
| dnd\_end\_dnd | $0.03/call |
| dnd\_end\_snooze | $0.03/call |
| reminders\_list | $0.03/call |
| reminders\_add | $0.05/call |
| reminders\_complete | $0.03/call |
| reminders\_delete | $0.05/call |
| reminders\_info | $0.03/call |
| pins\_list | $0.03/call |
| pins\_add | $0.05/call |
| pins\_remove | $0.03/call |
| stars\_list | $0.03/call |
| stars\_add | $0.05/call |
| stars\_remove | $0.03/call |
| search | $0.05/call |
| search\_messages | $0.05/call |
| team\_info | $0.03/call |
| team\_access\_logs | $0.05/call |
| team\_billable\_info | $0.03/call |
| bots\_info | $0.03/call |
| emoji\_list | $0.03/call |
| sql | $0.05/call |
| sync | $0.03/call |

***

### Troubleshooting

**`SLACK_BOT_TOKEN` not set error**
Ensure `SLACK_BOT_TOKEN` is set as an Apify secret in your actor configuration. The token must have the `channels:read`, `channels:write`, `users:read`, and `files:read` scopes at minimum.

**`channel not found` or permission errors**
Your bot token needs additional scopes. Use the Slack OAuth permissions tool to add scopes and re-install the app to your workspace.

**Actor times out in standby mode**
Set `APIFY_ACTOR_MAX_DURATION` or use `apify run --use-model=stay-alive` to keep the actor running indefinitely.

**`conversations_history` returns empty**
Some channels restrict history access. Verify the bot is a member of the channel or that the channel has `history_disclosed` enabled.

**`files_upload` fails with large files**
The Slack API limits file uploads to 256MB. For larger files, upload to external storage and post the link via `messages_post_message`.

***

### License

MIT

# Actor input Schema

## `tool` (type: `string`):

Slack tool name to call

## `params` (type: `object`):

Tool arguments

## Actor input object example

```json
{
  "tool": "conversations_list",
  "params": {}
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "tool": "conversations_list",
    "params": {}
};

// Run the Actor and wait for it to finish
const run = await client.actor("red.cars/slack-mcp").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "tool": "conversations_list",
    "params": {},
}

# Run the Actor and wait for it to finish
run = client.actor("red.cars/slack-mcp").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "tool": "conversations_list",
  "params": {}
}' |
apify call red.cars/slack-mcp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=red.cars/slack-mcp",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Slack MCP Actor",
        "description": "Slack MCP for AI agents — 66 tools for messaging, channels, users, files, and analytics. Wraps the Slack PP CLI as a standby MCP server.",
        "version": "1.0",
        "x-build-id": "PqbIgJX6DBf9nLKRR"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/red.cars~slack-mcp/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-red.cars-slack-mcp",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/red.cars~slack-mcp/runs": {
            "post": {
                "operationId": "runs-sync-red.cars-slack-mcp",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/red.cars~slack-mcp/run-sync": {
            "post": {
                "operationId": "run-sync-red.cars-slack-mcp",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "tool"
                ],
                "properties": {
                    "tool": {
                        "title": "Tool",
                        "type": "string",
                        "description": "Slack tool name to call",
                        "default": "conversations_list"
                    },
                    "params": {
                        "title": "Parameters",
                        "type": "object",
                        "description": "Tool arguments",
                        "default": {}
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
