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
# Simple Flowchart Test
This should work with our current Jison grammar.
```mermaid
flowchart TD
A[Start]
B[Process]
A --> B
```
Based on the grammar rules:
- `flowchart TD` (FLOWCHART + DIRECTION)
- `A[Start]` (node_definition: NODE + shape)
- `B[Process]` (node_definition: NODE + shape)
- `A --> B` (connection: NODE + ARROW + NODE)