epl-mcp
# EPL Language MCP Server The official Model Context Protocol (MCP) server for the EPL (English Programming Language) ecosystem. This server provides AI coding assistants with direct access to the EPL runtime, compiler, and documentation. It empowers AI models to securely run EPL code, execute test suites, analyze Abstract Syntax Trees (ASTs), and fetch real-time syntax documentation. **Key Capabilities:** - **Code Execution:** Run EPL scripts dynamically and return standard output and errors. - **AST Generation:** Parse EPL source code into structural JSON trees for deep analysis. - **Documentation Retrieval:** Fetch the latest EPL language rules and standard library documentation. - **Test Harness:** Run and evaluate EPL test suites programmatically.
How to connect
https://epl-mcp--abneesh.run.tools
tools/list returns the expected tools before relying on them in production.Tools
(6)-
epl_syntax_referenceGet EPL (English Programming Language) syntax reference with examples. Optionally filter by topic. Available topics: 'comments', 'variables', 'output_input', 'string_interpolation', 'control_flow', 'functions', 'collections', 'error_handling', 'file_io', 'imports', 'oop', 'enums_ternary', 'web', 'async', 'gui', 'js_bridge', 'deploy', 'observability', 'style_layout', '3d_canvas', 'misc'. Common aliases also work: 'classes'->oop, 'loops'->control_flow, 'functions', 'variables'. CRITICAL: EPL uses
-
epl_validateValidate EPL code using the real lexer, parser, and type checker. Returns syntax status, diagnostics with line numbers, and statement count. Use this to verify generated EPL code is syntactically correct.
-
epl_runExecute EPL code in a sandboxed subprocess with timeout. Returns program output (stdout) and any errors (stderr). Safe: runs in an isolated process with a 10-second default timeout.
-
epl_transpileTranspile EPL code to Python, browser JavaScript, or Node.js. Returns the transpiled source code in the target language.
-
epl_examplesSearch EPL example files by keyword. Returns matching example filenames and their source code. Use to find real, working EPL code patterns.
-
epl_error_lookupLook up an EPL error code or error type and get its explanation. Accepts codes like 'E0200' or names like 'ParserError'.