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

# get_tokenset

> Get a tokenset with all its modes

# get\_tokenset

Retrieves a tokenset including all its modes and token counts.

## Tool Schema

```json theme={null}
{
  "name": "get_tokenset",
  "description": "Get a Tokencraft tokenset with its modes",
  "inputSchema": {
    "type": "object",
    "properties": {
      "tokenset_id": {
        "type": "string",
        "description": "ID of the tokenset"
      }
    },
    "required": ["tokenset_id"]
  }
}
```

## Parameters

| Parameter     | Type   | Required | Description |
| ------------- | ------ | -------- | ----------- |
| `tokenset_id` | string | Yes      | Tokenset ID |

## Response

```json theme={null}
{
  "id": "550e8400-e29b-41d4-a716-446655440010",
  "name": "Colors",
  "description": "Brand colors and color palette",
  "workspace_id": "550e8400-e29b-41d4-a716-446655440000",
  "created_at": "2025-01-15T11:00:00Z",
  "updated_at": "2025-01-15T11:00:00Z"
}
```

## Example Usage

```
You: Show me the Colors tokenset with all its modes

Claude: **Colors Tokenset**

Description: Color tokens for the design system

**Modes**:
- Light (default) - 50 tokens
- Dark - 50 tokens
- High Contrast - 45 tokens

Total: 145 tokens across 3 modes
```

## See Also

* [list\_tokens](/mcp/tools/list-tokens)
* [export\_tokens](/mcp/tools/export-tokens)
