We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Positronikal/doxygen-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Support
- **Issues**: Report bugs and feature requests via GitHub Issues
- **Examples**: Sample projects in `examples/` directory
## Troubleshooting
### Common Issues
**Doxygen Not Found**
```bash
# Verify Doxygen installation
doxygen --version
# Add to PATH if needed (Windows)
set PATH=%PATH%;C:\Program Files\doxygen\bin
```
**Graphviz Diagrams Not Working**
```bash
# Test Graphviz installation
dot -V
# Install missing components
sudo apt-get install graphviz-dev # Linux
brew install graphviz # macOS
```
**LaTeX PDF Generation Fails**
```bash
# Test LaTeX installation
pdflatex --version
# Install missing packages
sudo apt-get install texlive-latex-extra texlive-fonts-recommended
```
**Permission Errors**
- Ensure write permissions to output directories
- Run with appropriate user privileges
- Check file system permissions
### Debug Mode
Enable detailed logging:
```bash
# Set log level to DEBUG
export PYTHONPATH=.
python -c "
import logging
logging.basicConfig(level=logging.DEBUG)
from server import main
import asyncio
asyncio.run(main())
"
```