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

# AccessToken

Defined in: [server/auth/types.ts:1](https://github.com/PrefectHQ/fastmcp-ts/blob/e4b6038f642b529f601463a576229747afebe9a4/src/server/auth/types.ts#L1)

## Properties

### claims

```ts theme={null}
claims: Record<string, unknown>;
```

Defined in: [server/auth/types.ts:11](https://github.com/PrefectHQ/fastmcp-ts/blob/e4b6038f642b529f601463a576229747afebe9a4/src/server/auth/types.ts#L11)

All claims from the token payload.

***

### clientId?

```ts theme={null}
optional clientId?: string;
```

Defined in: [server/auth/types.ts:5](https://github.com/PrefectHQ/fastmcp-ts/blob/e4b6038f642b529f601463a576229747afebe9a4/src/server/auth/types.ts#L5)

The subject/client identifier from the token.

***

### expiresAt?

```ts theme={null}
optional expiresAt?: number;
```

Defined in: [server/auth/types.ts:9](https://github.com/PrefectHQ/fastmcp-ts/blob/e4b6038f642b529f601463a576229747afebe9a4/src/server/auth/types.ts#L9)

Unix timestamp (seconds) when the token expires.

***

### scopes

```ts theme={null}
scopes: string[];
```

Defined in: [server/auth/types.ts:7](https://github.com/PrefectHQ/fastmcp-ts/blob/e4b6038f642b529f601463a576229747afebe9a4/src/server/auth/types.ts#L7)

Scopes granted to the token.

***

### token

```ts theme={null}
token: string;
```

Defined in: [server/auth/types.ts:3](https://github.com/PrefectHQ/fastmcp-ts/blob/e4b6038f642b529f601463a576229747afebe9a4/src/server/auth/types.ts#L3)

The raw bearer token string.
