w3_key_create
Generate and export a new ed25519 key pair for secure cryptographic operations. Ideal for managing identities and access in the MCP IPFS network.
Instructions
Generates and prints a new ed25519 key pair. Does not automatically use it for the agent.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
json | No | Export the new key pair as dag-json (default: false). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Generates and prints a new ed25519 key pair. Does not automatically use it for the agent.",
"properties": {
"json": {
"default": false,
"description": "Export the new key pair as dag-json (default: false).",
"type": "boolean"
}
},
"type": "object"
}