maxkb_config_variants.json•1.09 kB
{
"configurations": {
"variant1_http": {
"description": "HTTP服务器配置",
"config": {
"employee_management": {
"url": "http://localhost:8000/mcp",
"transport": "streamable_http"
}
}
},
"variant2_mcpServers": {
"description": "MCP服务器配置格式",
"config": {
"mcpServers": {
"employee_management": {
"command": "python",
"args": ["/Users/ywt/PycharmProjects/mcp/src/http_server.py"],
"env": {}
}
}
}
},
"variant3_simple": {
"description": "简化配置格式",
"config": {
"employee_management": {
"url": "http://localhost:8000/mcp"
}
}
},
"variant4_with_auth": {
"description": "带认证的配置",
"config": {
"employee_management": {
"url": "http://localhost:8000/mcp",
"transport": "streamable_http",
"headers": {
"Content-Type": "application/json"
}
}
}
}
}
}