MCP Client Configuration Server

add_server_configuration

Add or update a server configuration in a client configuration

Input Schema

NameRequiredDescriptionDefault
allow_overrideNoWhether to allow overriding an existing server configuration with the same name (default: false)
clientYesClient name (cline, roo_code, windsurf, claude)
json_configYesServer configuration in JSON format
server_nameYesName of the server to add or update

Input Schema (JSON Schema)

{ "properties": { "allow_override": { "default": false, "description": "Whether to allow overriding an existing server configuration with the same name (default: false)", "type": "boolean" }, "client": { "description": "Client name (cline, roo_code, windsurf, claude)", "type": "string" }, "json_config": { "description": "Server configuration in JSON format", "type": "object" }, "server_name": { "description": "Name of the server to add or update", "type": "string" } }, "required": [ "client", "server_name", "json_config" ], "type": "object" }