We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anton-proto/mcp-imagen'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
CLAUDE.md•973 B
# Development Instructions for mcp-imagen-server
## Post-Implementation Validation
After significant implementation changes, always run the following validation steps:
### 1. Run Unit Tests
```bash
uv run pytest tests/ -v
```
This will execute all unit tests to ensure the implementation doesn't break existing functionality.
To run with coverage:
```bash
uv run pytest tests/ -v --cov=src
```
### 2. Run Linting (Ruff)
```bash
uv run ruff check .
```
Check for code quality issues and style violations.
### 3. Run Formatting Check
```bash
uv run ruff format --check .
```
Verify code formatting compliance.
### 4. Auto-fix Issues (if needed)
```bash
# Auto-fix linting issues
uv run ruff check --fix .
# Auto-format code
uv run ruff format .
```
## CI/CD
The project uses GitHub Actions for continuous integration:
- Unit tests run on every push and pull request
- Linting checks run on every push and pull request
- Both must pass before merging changes