Release Notes: 8.3

DipDup 8.3 brings several important improvements to enhance developer experience and expand integration capabilities. This release focuses on AI-assisted development with the Model Context Protocol, improved package management with uv, and standardized code quality tools.

Model Context Protocol

MCP is an open protocol that standardizes how applications provide context to LLMs. It enables AI tools to access and interact with your indexer data in real-time.

In this release, we've added a built-in MCP server to DipDup. This allows AI assistants like GitHub Copilot, Cursor, and Claude to understand your project's structure, schema, and current state.

We've prepared a complete guide on integrating DipDup with MCP to help you:

  • Configure and run the DipDup MCP server
  • Connect popular MCP clients (Cursor, VSCode, Claude)
  • Implement custom tools and resources specific to your project
  • Access real-time indexer data and metrics

Improved uv support

The uv package manager support was introduced in DipDup 8.2 and has proven to be reliable and loved by developers.

In this release, we've enhanced the integration:

  • The installer script and dipdup self commands now use uv tool instead of pipx for faster, more reliable installations.
  • Default project templates are configured to use uv by default
  • Better handling of dependencies and virtual environments

To switch to uv in existing projects, update your configs/replay.yaml and run dipdup init -b -f.

Warning
Note that uv build backend (see #3957, available separately as uv_build package) doesn't support non-standard layout of DipDup packages. Hatchling build backend handles both editable and non-editable builds correctly.

Standardized linting and formatting

We've improved the integration of code quality tools that were already part of our default project templates. The key changes include:

  • Replacing Black with Ruff Format as the default formatter for faster and more consistent results
  • Better integration of linting and formatting tools with unified configurations (run on dipdup init)

Our carefully selected ruleset helps maintain code quality without being too restrictive. Check pyproject.toml and adjust it to your liking if needed. We continue to invest in standardized tooling because developer time is the most valuable resource.

If you prefer to manage code quality tools manually, you can disable the built-in linting with DIPDUP_NO_LINTER environment variable or dipdup init --no-linter option.

Migrating from 8.2

Existing projects will continue to work with 8.3 without any modifications.

If you want to use recent improvements like the MCP server, uv package manager, and Ruff formatter, refresh your project template:

Terminal
dipdup init -b -f
make install

This will update your project package with the latest template files while preserving your existing code (handlers, models, etc.). The -b flag tells DipDup to update the project base template, and -f forces the regeneration of supporting files.

Changes since 8.2

Added

  • cli: Apply ruff linting and formating on init.
  • mcp: Added Model Context Protocol (MCP) server implementation.
  • mcp: Added built-in resources for accessing indexer configuration and metrics.
  • mcp: Added support for exposing custom tools and resources via @dipdup.mcp decorators.

Fixed

  • package: Create package marker even if helper symlink is present.
  • project: Fixed built sdist/wheel artifacts which contained unrelated files.

Changed

  • cli: install.py script and dipdup self commands use uv tool instead of pipx.
  • cli: new command uses default values for some replay.yaml fields.
  • project: Replace black with ruff as default formatter.
  • project: Use hatchling build backend for new projects.




See you soon! 👋

DipDup is a free open-source software created by the community and for the community. Join our socials to discuss this release, ask any questions, or participate in development.

Twitter | Discord | GitHub

Help and tips -> Join our Discord
Ideas or suggestions -> Issue Tracker
GraphQL IDE -> Open Playground