NEAR MCP

by nearai
Verified

system_remove_local_account

Remove a local NEAR account from the local keystore to restrict access. This action does not delete the account from the NEAR blockchain but ensures it is no longer available locally for usage.

Instructions

Removes a local NEAR account from the local keystore. Once removed, the account will no longer be available to the user. This does not delete the account from the NEAR blockchain, it only removes the account from the local keystore.

Input Schema

NameRequiredDescriptionDefault
accountIdYesThe local account id to remove from the local keystore.
networkIdNomainnet

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "accountId": { "description": "The local account id to remove from the local keystore.", "type": "string" }, "networkId": { "default": "mainnet", "enum": [ "testnet", "mainnet" ], "type": "string" } }, "required": [ "accountId" ], "type": "object" }
ID: ibzhoz5k4z