account_list_access_keys
Retrieve all access keys for a specific NEAR account on either testnet or mainnet using the NEAR MCP server. Streamlines account management and permissions auditing.
Instructions
List all access keys for an given account.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | Yes | ||
| networkId | No | mainnet |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountId": {
"type": "string"
},
"networkId": {
"default": "mainnet",
"enum": [
"testnet",
"mainnet"
],
"type": "string"
}
},
"required": [
"accountId"
],
"type": "object"
}