Table of Contents

Class StdioClientCompletionDetails

Namespace
ModelContextProtocol.Client
Assembly
ModelContextProtocol.Core.dll

Provides details about the completion of a stdio-based MCP client session.

public sealed class StdioClientCompletionDetails : ClientCompletionDetails
Inheritance
StdioClientCompletionDetails
Inherited Members

Properties

ExitCode

Gets the exit code of the server process, or null if unavailable.

public int? ExitCode { get; set; }

Property Value

int?

ProcessId

Gets the process ID of the server process, or null if unavailable.

public int? ProcessId { get; set; }

Property Value

int?

StandardErrorTail

Gets the last lines of the server process's standard error output, or null if unavailable.

public IReadOnlyList<string>? StandardErrorTail { get; set; }

Property Value

IReadOnlyList<string>