We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jaewilson07/comfy_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
CONTRIBUTING.md•996 B
# Contributing
Thank you for your interest in contributing to ComfyUI MCP Server!
## Development Setup
1. **Clone the repository:**
```bash
git clone <repo-url>
cd comfyui-mcp-server
```
2. **Install dependencies:**
```bash
uv sync
```
3. **Start ComfyUI** (if not already running):
```bash
cd <ComfyUI_dir>
python main.py --port 8188
```
4. **Run the server:**
```bash
python server.py
```
5. **Test your changes:**
```bash
python test_client.py
```
## Code Style
- Follow PEP 8
- Use type hints
- Document functions with docstrings
- Keep functions focused and small
## Pull Request Process
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Test thoroughly
5. Submit a pull request with a clear description
## Questions?
- Open an issue for bugs or feature requests
- Check [docs/REFERENCE.md](docs/REFERENCE.md) for API details
- See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for design decisions