remove_server_configuration
Delete a specific server configuration from a client's configuration file. Input client name and server name to unlink the server setup, ensuring accurate synchronization across AI assistant systems.
Instructions
Remove a server configuration from a client configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client | Yes | Client name (cline, roo_code, windsurf, claude) | |
server_name | Yes | Name of the server to remove |
Input Schema (JSON Schema)
{
"properties": {
"client": {
"description": "Client name (cline, roo_code, windsurf, claude)",
"type": "string"
},
"server_name": {
"description": "Name of the server to remove",
"type": "string"
}
},
"required": [
"client",
"server_name"
],
"type": "object"
}