> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Workspaces

# Workspaces

Manage team workspaces and collaboration through the MCP server.

## Available Tools

| Tool                         | Description            |
| ---------------------------- | ---------------------- |
| `60db_list_workspaces`       | List all workspaces    |
| `60db_get_workspace`         | Get workspace details  |
| `60db_create_workspace`      | Create a new workspace |
| `60db_get_workspace_members` | List workspace members |

## List Workspaces

View all workspaces:

```typescript theme={null}
{
  "limit": 20
}
```

## Create Workspace

Create a new team workspace:

```typescript theme={null}
{
  "name": "Engineering Team",
  "description": "Main engineering workspace"
}
```

## Get Workspace Members

List members of a workspace:

```typescript theme={null}
{
  "workspace_id": "workspace_abc123"
}
```

## Usage in Claude

```
You: List all my workspaces
You: Create a new workspace for the design team
You: Who are the members of the Engineering workspace?
```

## Related

* [Analytics](/mcp-server/analytics) - Track usage
