Skip to main content
Glama

delete_item

Remove articles from Qiita platform by providing the article ID. Delete specific posts to manage content on the Japanese developer community.

Instructions

指定された記事を削除します

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemIdYes記事ID

Implementation Reference

  • The handler for the 'delete_item' tool. It uses itemIdSchema for input validation and delegates to QiitaApiClient.deleteItem(itemId).
    delete_item: { schema: itemIdSchema, execute: async ({ itemId }, client) => client.deleteItem(itemId), },
  • The MCP tool definition including name, description, and inputSchema for 'delete_item'.
    { name: 'delete_item', description: '指定された記事を削除します', inputSchema: { type: 'object', properties: { itemId: { type: 'string', description: '記事ID', }, }, required: ['itemId'], }, },
  • The QiitaApiClient.deleteItem method that performs the actual HTTP DELETE request to the Qiita API to delete the item.
    async deleteItem(itemId: string) { this.assertAuthenticated(); const response = await this.client.delete(`/items/${itemId}`); return response.data; }

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