daily_question

Pack: leetcode · Endpoint: https://gateway.pipeworx.io/leetcode/mcp

Today’s daily coding challenge.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/leetcode/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"daily_question","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('daily_question', {});

Response shape

FieldTypeDescription
activeDailyCodingChallengeQuestionobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "activeDailyCodingChallengeQuestion": {
      "type": "object",
      "properties": {
        "date": {
          "type": "string",
          "description": "Challenge date"
        },
        "link": {
          "type": "string",
          "description": "Link to the problem"
        },
        "question": {
          "type": "object",
          "properties": {
            "questionId": {
              "type": "string",
              "description": "Problem ID"
            },
            "titleSlug": {
              "type": "string",
              "description": "Problem title slug"
            },
            "title": {
              "type": "string",
              "description": "Problem title"
            },
            "difficulty": {
              "type": "string",
              "description": "Difficulty level"
            },
            "topicTags": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "Tag name"
                  },
                  "slug": {
                    "type": "string",
                    "description": "Tag slug"
                  }
                }
              },
              "description": "Topic tags"
            }
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "leetcode": {
      "url": "https://gateway.pipeworx.io/leetcode/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026