* Get MCP server status
(options?: Options<McpStatusData, ThrowOnError>)
| 930 | * Get MCP server status |
| 931 | */ |
| 932 | public status<ThrowOnError extends boolean = false>(options?: Options<McpStatusData, ThrowOnError>) { |
| 933 | return (options?.client ?? this._client).get<McpStatusResponses, unknown, ThrowOnError>({ |
| 934 | url: "/mcp", |
| 935 | ...options, |
| 936 | }) |
| 937 | } |
| 938 | |
| 939 | /** |
| 940 | * Add MCP server dynamically |