epl-mcp
EPL Language MCP Server The official Model Context Protocol (MCP) server for the EPL (English Programming Language) ecosystem.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Epl Syntax Reference: Get EPL (English Programming Language) syntax reference with examples. Optionally filter by topic. Available topics: 'comments', 'variables', 'output_input', 'string_interpolatio
- Epl Validate: Validate 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 synt
- Epl Run: Execute 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.
What data it sees
Do you need an account
No: the server works without sign-in
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.
Server tool list (6)
Raw names from tools/list. Only developers need these.
| epl_syntax_reference | Get 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 'Otherwise' not 'Else', 'Note:' not '//', and every block ends with 'End'. |
| epl_validate | Validate 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_run | Execute 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_transpile | Transpile EPL code to Python, browser JavaScript, or Node.js. Returns the transpiled source code in the target language. |
| epl_examples | Search EPL example files by keyword. Returns matching example filenames and their source code. Use to find real, working EPL code patterns. |
| epl_error_lookup | Look up an EPL error code or error type and get its explanation. Accepts codes like 'E0200' or names like 'ParserError'. |