get_server_configuration
Retrieve specific server configurations for AI clients like Cline or Claude. Input client name and server details to fetch settings efficiently.
Instructions
Get the configuration for a specific server 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 retrieve |
Input Schema (JSON Schema)
{
"properties": {
"client": {
"description": "Client name (cline, roo_code, windsurf, claude)",
"type": "string"
},
"server_name": {
"description": "Name of the server to retrieve",
"type": "string"
}
},
"required": [
"client",
"server_name"
],
"type": "object"
}