problemset_stats
Pack: leetcode · Endpoint: https://gateway.pipeworx.io/leetcode/mcp
Total problems by difficulty.
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":"problemset_stats","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('problemset_stats', {});
Response shape
| Field | Type | Description |
|---|---|---|
allQuestionsCount | array | Problem counts by difficulty |
Full JSON Schema
{
"type": "object",
"properties": {
"allQuestionsCount": {
"type": "array",
"items": {
"type": "object",
"properties": {
"difficulty": {
"type": "string",
"description": "Difficulty level"
},
"count": {
"type": "number",
"description": "Number of problems"
}
}
},
"description": "Problem counts 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.