add_credential
Store a new SSH credential on the SSH MCP Server by specifying the host, username, and private key file path for secure remote command execution.
Instructions
Add a new SSH credential with private key file path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | ||
name | Yes | ||
privateKeyPath | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"privateKeyPath": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"name",
"host",
"username",
"privateKeyPath"
],
"type": "object"
}