get_service
Retrieve detailed service information from the Nacos MCP Server, including metadata and clusters, by specifying a service name. Optional namespace and group parameters refine the search.
Instructions
This interface retrieves detailed information of a specified service, including metadata and clusters, not including instance list.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupName | No | The groupName pattern of services, default is `DEFAULT_GROUP` if missing | |
namespaceId | No | The namespaceId of services, default is `public` if missing | |
serviceName | Yes | The serviceName pattern of services, required. |
Input Schema (JSON Schema)
{
"properties": {
"groupName": {
"description": "The groupName pattern of services, default is `DEFAULT_GROUP` if missing",
"type": "string"
},
"namespaceId": {
"description": "The namespaceId of services, default is `public` if missing",
"type": "string"
},
"serviceName": {
"description": "The serviceName pattern of services, required.",
"type": "string"
}
},
"required": [
"serviceName"
],
"type": "object"
}