Skip to main content
Glama

threads_unhide_reply

Unhide a previously hidden reply on your Threads post to restore visibility and engagement.

Instructions

Unhide a previously hidden reply on your Threads post.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reply_idYesReply ID to unhide

Implementation Reference

  • The implementation of the `threads_unhide_reply` tool handler, which includes its registration with the server and the asynchronous function to unhide a reply using the client.
    // ─── threads_unhide_reply ────────────────────────────────────
    server.tool(
      "threads_unhide_reply",
      "Unhide a previously hidden reply on your Threads post.",
      {
        reply_id: z.string().describe("Reply ID to unhide"),
      },
      async ({ reply_id }) => {
        try {
          const { data, rateLimit } = await client.threads("POST", `/${reply_id}/manage_reply`, { hide: false });
          return { content: [{ type: "text", text: JSON.stringify({ success: true, hidden: false, ...data as object, _rateLimit: rateLimit }, null, 2) }] };
        } catch (error) {
          return { content: [{ type: "text", text: `Unhide reply failed: ${error instanceof Error ? error.message : String(error)}` }], isError: true };
        }
      }
    );

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/mikusnuz/meta-mcp'

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