Pudu programming language
Menu
Package

@chrismichaelps / pudu-lang-mcp

Model Context Protocol server for Pudu language documentation and compiler tools

0.1.1Apache-2.01

InstallClose

Main.pudu

Pudu10 lines189 B

GitHub ↗
1/** @Main.Entry.Program — starts the MCP server */2module Main34import PuduLangMcp as Server56/// Serves MCP over stdio and answers the exit status.7fn main() -> Int {8  Server.serve()9}10