Skip to main content
Glama

unfollow_tag

Remove a tag from your followed tags list on Qiita to stop receiving updates and filter your content feed.

Instructions

指定されたタグのフォローを解除します

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagIdYesタグID

Implementation Reference

  • The handler definition for the 'unfollow_tag' tool. It uses Zod schema for input validation (tagId) and executes by calling client.unfollowTag(tagId).
    unfollow_tag: { schema: tagIdSchema, execute: async ({ tagId }, client) => client.unfollowTag(tagId), },
  • The MCP Tool definition including name, description, and inputSchema for 'unfollow_tag', which requires a 'tagId' string.
    { name: 'unfollow_tag', description: '指定されたタグのフォローを解除します', inputSchema: { type: 'object', properties: { tagId: { type: 'string', description: 'タグID', }, }, required: ['tagId'], }, },
  • The QiitaApiClient method implementing the unfollow logic: asserts authentication, sends DELETE to /tags/{tagId}/following, returns success.
    async unfollowTag(tagId: string) { this.assertAuthenticated(); await this.client.delete(`/tags/${tagId}/following`); return { success: 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/Selenium39/mcp-server-qiita'

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