MCP

View as Markdown

Classes

Enums

Functions

createClient

Creates a new MCP.Client instance.

1createClient(parameters: ClientParameters): Promise<Client>

Parameters

parameters
ClientParametersRequired

Types

ClientParameters

Extends: _VoiceAIClientParameters

MCP.Client parameters. Can be passed as arguments to the MCP.createClient method.

mcpServerConnectionConfig
MCPServerConnectionConfig

The MCP server connection configuration.

Inherited fields

onWebSocketClose
(event: _WebSocketCloseEvent) => void

_optional, inherited from VoiceAIClientParameters

Optional. A callback function that is called when the WebSocket connection is closed.

privacy
boolean

_optional, inherited from WebSocketBasedClientParameters

Optional. Whether to enable the privacy functionality.

If privacy is enabled, the logging for the WebSocket connection is disabled.

NOTE: the default value is false.

statistics
boolean

_optional, inherited from WebSocketBasedClientParameters

Optional. Enables statistics functionality.

trace
boolean

_optional, inherited from WebSocketBasedClientParameters

Optional. Whether to enable the tracing functionality.

If tracing is enabled, a URL to the trace file appears in the ‘websocket.created’ message. The file contains all sent and received WebSocket messages in the plain text format. The file is uploaded to the S3 storage.

NOTE: enable this only for diagnostic purposes. You can provide the trace file to our support team to help investigating issues.

MCPServerConnectionConfig

MCP server connection configuration.

clientName
string

ClientName and ClientVersion identify this MCP client in the protocol handshake.

clientVersion
string

ClientVersion identify this MCP client in the protocol handshake.

endpoint
string

Endpoint is the server URL for “http” or “sse” transport.

headers
Object

Headers to send to the MCP server on HTTP/SSE requests (e.g. Authorization, API keys). You can use it to pass authentication headers to the MCP server.

transport
string

Transport is “http”, or “sse”.