We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alwank/Chhart-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
URL_FORMAT_NOTES.md•959 B
# URL Format Notes
## Current Status
The MCP server generates URLs in the format:
```
https://chhart.app/#flowchart=<base64_encoded_content>&title=<title>
https://chhart.app/#sankey=<base64_encoded_content>&title=<title>
```
## Testing Results
### ✅ DSL Validation
The generated DSL is **100% valid** and renders perfectly when manually entered into chhart.app:
- Flowchart nodes render correctly
- Attributes work (shape=diamond, bg=green, bg=red)
- Indentation creates proper connections
- Visual output matches expectations
### ✅ URL Hash Parsing
The production version of chhart.app **parses** the URL hash parameters `#flowchart=` and `#sankey=` as of **2026-01-20**.
When users navigate to a URL like:
```
https://chhart.app/#flowchart=U3RhcnQKICBEZWNpc2lvbj8...
```
The app loads the encoded diagram automatically.
## Notes
- Titles are read from the optional `&title=` parameter.
- Large diagrams may still hit browser URL length limits.