get_service_info
Retrieve Windows service information, including details or status of specific services, using secure command-line interaction on the Windows Command Line MCP Server.
Instructions
Retrieve information about Windows services. Can query all services or get detailed status of a specific service.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | Action to perform | query |
serviceName | No | Service name to get info about (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"default": "query",
"description": "Action to perform",
"enum": [
"query",
"status"
],
"type": "string"
},
"serviceName": {
"description": "Service name to get info about (optional)",
"type": "string"
}
},
"type": "object"
}