Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- [PR-125](https://github.com/itk-dev/devops_itkdev-docker/pull/125)
- Added MCP server for AI coding assistants (Claude Code integration)
- [PR-121](https://github.com/itk-dev/devops_itkdev-docker/pull/121))
- Changed COMPOSE_USER to runner.
- [PR-108](https://github.com/itk-dev/devops_itkdev-docker/pull/108)
Expand Down
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,30 @@ At ITK-dev we have created docker images that matches our development.
The fuld list can be found at
[https://hub.docker.com/search?q=itkdev&type=image](https://hub.docker.com/search?q=itkdev&type=image).

## MCP Server for AI Assistants

This repository includes an MCP (Model Context Protocol) server that provides AI coding
assistants like Claude Code with access to ITK Dev documentation and project analysis tools.

### What it provides

- __Documentation access__: AI assistants can read ITK Dev Docker documentation
- __Project detection__: Analyze projects to detect template, PHP version, framework
- __Template comparison__: Compare projects against templates to find outdated files

See [mcp/README.md](mcp/README.md) for installation and configuration instructions,
and [docs/rfc-mcp-server.md](docs/rfc-mcp-server.md) for the design rationale.

## Documentation

Comprehensive documentation is available in the [docs/](docs/) directory:

- [itkdev-docker-cli.md](docs/itkdev-docker-cli.md) - CLI tool commands and setup procedures
- [itkdev-docker-compose.md](docs/itkdev-docker-compose.md) - Docker Compose patterns
- [itkdev-task-files.md](docs/itkdev-task-files.md) - Taskfile automation patterns
- [github-actions-templates.md](docs/github-actions-templates.md) - GitHub Actions workflows
- [rfc-mcp-server.md](docs/rfc-mcp-server.md) - MCP server design rationale

## More

For more details about usage see <https://docs.itkdev.dk>
Expand Down
Loading