cmd_run
Run shell commands directly and retrieve outputs using the cmd_run tool, part of the MCP Yahoo Finance server, to streamline data retrieval and processing tasks.
Instructions
Execute an arbitrary shell command and return its output.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cmd | Yes | The command string to run. |
Input Schema (JSON Schema)
{
"properties": {
"cmd": {
"description": "The command string to run.",
"type": "string"
}
},
"required": [
"cmd"
],
"type": "object"
}