user_solved

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

Solved counts by difficulty.

Parameters

NameTypeRequiredDescription
usernamestringyes

Example call

Arguments

{
  "username": "john_doe"
}

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":"user_solved","arguments":{"username":"john_doe"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('user_solved', {
  "username": "john_doe"
});

Response shape

FieldTypeDescription
matchedUserobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "matchedUser": {
      "type": "object",
      "properties": {
        "submitStats": {
          "type": "object",
          "properties": {
            "acSubmissionNum": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "difficulty": {
                    "type": "string",
                    "description": "Difficulty level (Easy, Medium, Hard)"
                  },
                  "count": {
                    "type": "number",
                    "description": "Number of accepted submissions"
                  },
                  "submissions": {
                    "type": "number",
                    "description": "Total submission attempts"
                  }
                }
              },
              "description": "Accepted submissions by difficulty"
            },
            "totalSubmissionNum": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "difficulty": {
                    "type": "string",
                    "description": "Difficulty level"
                  },
                  "count": {
                    "type": "number",
                    "description": "Total submission count"
                  },
                  "submissions": {
                    "type": "number",
                    "description": "Total attempts"
                  }
                }
              },
              "description": "Total submissions by difficulty"
            }
          }
        }
      }
    }
  }
}

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