We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oOo0oOo/lean-lsp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
DeclarationDiagnosticTest.lean•344 B
import Mathlib
-- First theorem with a clear type error
theorem firstTheorem : 1 + 1 = 2 := "string instead of proof"
-- Valid definition
def validFunction : Nat := 42
-- Second theorem with an error in the statement type mismatch
theorem secondTheorem : Nat := True
-- Another valid definition
def anotherValidFunction : String := "hello"