Skip to main content
Glama
Selenium39

Qiita API MCP Server

get_authenticated_user

Retrieve authenticated user details from Qiita, a Japanese developer community platform, for API interactions and user-specific operations.

Instructions

認証されたユーザーの詳細情報を取得します

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler for the 'get_authenticated_user' tool. It has an empty input schema and executes by calling the QiitaApiClient's getAuthenticatedUser method.
    get_authenticated_user: {
      schema: z.object({}),
      execute: async (_, client) => client.getAuthenticatedUser(),
    },
  • The MCP tool definition (for listing tools) with name, Japanese description, and empty input schema.
    {
      name: 'get_authenticated_user',
      description: '認証されたユーザーの詳細情報を取得します',
      inputSchema: {
        type: 'object',
        properties: {},
        required: [],
      },
    },
  • Core helper function in QiitaApiClient that performs the actual API call to retrieve the authenticated user after checking authentication.
    async getAuthenticatedUser() {
      this.assertAuthenticated();
      const response = await this.client.get('/authenticated_user');
      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