Table of Contents

Property Arguments

Namespace
LMKit.Mcp.Transport
Assembly
LM-Kit.NET.dll

Arguments

Gets or sets the command-line arguments.

public string Arguments { get; set; }

Property Value

string

A string containing all arguments to pass to the command. Arguments are passed as-is to the process start info.

Examples

// For: npx @modelcontextprotocol/server-filesystem /tmp
options.Command = "npx";
options.Arguments = "@modelcontextprotocol/server-filesystem /tmp";

// For: python -m myserver --verbose
options.Command = "python";
options.Arguments = "-m myserver --verbose";