mcp-server-leetcode

by doggybee
Verified

search-problems

Filter and retrieve LeetCode problems by difficulty, tags, and quantity using an MCP server, ideal for tailored coding practice and preparation.

Input Schema

NameRequiredDescriptionDefault
difficultyNoDifficulty level
limitNoMaximum number of problems to return
skipNoNumber of problems to skip
tagsNoTags to filter by, separated by '+' (e.g., 'array+dynamic-programming')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "difficulty": { "description": "Difficulty level", "enum": [ "EASY", "MEDIUM", "HARD" ], "type": "string" }, "limit": { "default": 20, "description": "Maximum number of problems to return", "maximum": 100, "minimum": 1, "type": "number" }, "skip": { "default": 0, "description": "Number of problems to skip", "type": "number" }, "tags": { "description": "Tags to filter by, separated by '+' (e.g., 'array+dynamic-programming')", "type": "string" } }, "type": "object" }

You must be authenticated.

Other Tools from mcp-server-leetcode

Related Tools

ID: hj5pz4f2go