Skip to main content
Glama
exampleDiagram.jison597 B
%lex %options case-insensitive %{ // Pre-lexer code can go here %} %% "example-diagram" return 'example-diagram' ; [\s\n\r]+ return 'NL' ; [\s]+ return 'space'; "showInfo" return 'showInfo'; <<EOF>> return 'EOF' ; . return 'TXT' ; /lex %start start %% /* language grammar */ start // %{ : example-diagram document 'EOF' { return yy; } } : example-diagram document 'EOF' { return yy; } ; document : /* empty */ | document line ; line : statement { } | 'NL' ; statement : showInfo { yy.setInfo(true); } ; %%

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ai-of-mine/fast-mermaid-validator-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server