servers
Get a server
Retrieve server details including connections, tools, and security status.
get/servers/{qualifiedName}
Path parameters
qualifiedNamestring required
The server's qualified name (e.g. 'namespace/server' or 'namespace' for namespace-only servers). Use %2F to encode the slash.
Response
Server found
Example response
{
"qualifiedName": "smithery/hello-world",
"displayName": "Hello World",
"description": "A simple hello world server",
"iconUrl": "https://example.com/icon.png",
"remote": true,
"deploymentUrl": "https://api.example.com",
"security": {
"scanPassed": true
},
"tools": [
{
"name": "get_weather",
"description": "Get current weather"
}
],
"resources": [
{
"name": "config://settings",
"uri": "config://app/settings",
"description": "Application settings",
"mimeType": "application/json"
}
],
"prompts": [
{
"name": "summarize",
"description": "Summarize the given text",
"arguments": [
{
"name": "text",
"description": "The text to summarize",
"required": true
}
]
}
]
}