NEAR MCP

by nearai
Verified

account_delete_access_keys

Remove specified access keys from an account on the NEAR blockchain by providing the account ID and public key. Ensures secure key management and access control.

Instructions

Delete an access key from an account based on it's public key.

Input Schema

NameRequiredDescriptionDefault
accountIdYes
networkIdNomainnet
publicKeyYes

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" }, "publicKey": { "type": "string" } }, "required": [ "accountId", "publicKey" ], "type": "object" }
ID: ibzhoz5k4z