servers

Get a server by namespace and server name

Get a single server by its namespace and server name.

get/servers/{namespace}/{server}

Path parameters

namespacestring required
serverstring required

Response

Server found

qualifiedNamestring required
displayNamestring required
descriptionstring required
iconUrlstring nullable required
remoteboolean required
deploymentUrlstring nullable required

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"
    }
  ]
}

Changes