Skip to main content
Glama
Selenium39

Qiita API MCP Server

get_tag_items

Retrieve articles associated with a specific tag from Qiita, the Japanese developer community platform, using tag ID and pagination parameters.

Instructions

指定されたタグの記事一覧を取得します

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagIdYesタグID
pageNoページ番号(1-100)
perPageNo1ページあたりの件数(1-100)

Implementation Reference

  • Handler definition for the 'get_tag_items' tool. It defines the input schema by merging tagIdSchema and paginationSchema, and the execute function which calls client.getTagItems with the parsed arguments.
    get_tag_items: {
      schema: tagIdSchema.merge(paginationSchema),
      execute: async ({ tagId, page, perPage }, client) =>
        client.getTagItems(tagId, page, perPage),
    },
  • MCP tool schema definition for 'get_tag_items', including name, description, and inputSchema for tool listing.
    {
      name: 'get_tag_items',
      description: '指定されたタグの記事一覧を取得します',
      inputSchema: {
        type: 'object',
        properties: {
          tagId: {
            type: 'string',
            description: 'タグID',
          },
          page: {
            type: 'number',
            description: 'ページ番号(1-100)',
            default: 1,
          },
          perPage: {
            type: 'number',
            description: '1ページあたりの件数(1-100)',
            default: 20,
          },
        },
        required: ['tagId'],
      },
    },
  • Supporting method in QiitaApiClient that performs the actual API call to retrieve items associated with a specific tag from the Qiita API.
    async getTagItems(tagId: string, page = 1, perPage = 20) {
      const response = await this.client.get(`/tags/${tagId}/items`, {
        params: { page, per_page: perPage },
      });
      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