simpleConfig static method
Helper method to create a simple server configuration
Implementation
static McpServerConfig simpleConfig({
required String name,
required String version,
bool enableDebugLogging = false,
}) {
return McpServerConfig(
name: name,
version: version,
capabilities: ServerCapabilities.simple(
tools: true,
resources: true,
prompts: true,
),
enableDebugLogging: enableDebugLogging,
);
}