manage_credentials
Securely manage New Relic API credentials in keychain - check status, store new keys, or remove all credentials for API access.
Instructions
Manage New Relic credentials securely in keychain.
Actions:
- 'status': Show current credential status
- 'store': Store new credentials (requires api_key parameter)
- 'delete': Remove all credentials from keychain
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| api_key | No | ||
| account_id | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Account Id"
},
"action": {
"title": "Action",
"type": "string"
},
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
}
},
"required": [
"action"
],
"type": "object"
}