Configuration documentation must accurately reflect implementation details and behavior. Ensure that: 1. Code examples in documentation use the exact same property names and structure as the actual implementation
Configuration documentation must accurately reflect implementation details and behavior. Ensure that:
Example - Incorrect:
const client = new MultiServerMCPClient({
mcpServers: {
'data-processor': {
command: 'python',
args: ['data_server.py']
}
}
});
Example - Correct:
const client = new MultiServerMCPClient({
'data-processor': {
command: 'python',
args: ['data_server.py']
}
});
When documenting configuration flags like useStandardContentBlocks
, also include special case behavior (e.g., “audio content always uses standard content blocks regardless of this setting”).
Enter the URL of a public GitHub repository