Skip to main content
Glama

hash-sha512

Generate SHA512 hash for any input text using this tool. Convert plaintext into a secure 128-character hexadecimal hash, ideal for data integrity and security applications.

Instructions

Generate SHA512 hash

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesText to hash with SHA512

Implementation Reference

  • The handler function computes the SHA512 hash of the input text using Node.js crypto module and returns the hex digest prefixed with 'SHA512 hash:' in a structured text response.
    }, async ({ text }) => { const hash = createHash('sha512'); hash.update(text); const result = hash.digest('hex'); return { content: [ { type: "text", text: `SHA512 hash: ${result}`, }, ], }; }
  • Input schema defining a single string parameter 'text' for the text to be hashed.
    description: "Generate SHA512 hash", inputSchema: { text: z.string().describe("Text to hash with SHA512"),
  • Registration of the 'hash_sha512' tool with the MCP server, including description, schema, annotations, and handler.
    export function registerHashSha512(server: McpServer) { server.registerTool("hash_sha512", { description: "Generate SHA512 hash", inputSchema: { text: z.string().describe("Text to hash with SHA512"), }, // VS Code compliance annotations annotations: { title: "Hash Sha512", description: "Generate SHA512 hash", readOnlyHint: false } }, async ({ text }) => { const hash = createHash('sha512'); hash.update(text); const result = hash.digest('hex'); return { content: [ { type: "text", text: `SHA512 hash: ${result}`, }, ], }; } ); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/wrenchpilot/it-tools-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server