Shipped/Regular release update February 9th, 2026

February 9, 2026

Regular release update February 9th, 2026

Features

Streamable HTTP MCP transport

The Uniform MCP server now supports two transport modes, giving you more flexibility in how you connect AI assistants to your Uniform project.

Transport Options

HTTP Streamable (New)

Connect directly to Uniform's hosted MCP endpoint—no local process required. Ideal for web-based tools, cloud environments, or anywhere running a local process isn't practical.

{ "mcpServers": { "uniform": { "url": "https://ai.uniform.app/projects/<your-project-id>/mcp", "headers": { "x-api-key": "<your-api-key>" } } } }
Stdio (Existing)

Run the MCP server locally as a process. Best for desktop tools like Claude Desktop or local development setups.

{ "mcpServers": { "uniform": { "command": "npx", "args": ["-y", "@uniformdev/uniform-mcp"], "env": { "UNIFORM_API_KEY": "<your-api-key>", "UNIFORM_PROJECT_ID": "<your-project-id>" } } } }

Bug fixes:

  • CLI: Improved cli login visuals and fixed a copy to clipboard overflow issue (UNI-8313)
  • Canvas: Fixed an issue where a failed data binding would cause a wrong validation error (UNI-8806)
  • Dashboard: Fixed an issue where navigating back from the block editor (when accessed from a composition) would incorrectly lead to the content types list instead of the original composition (UNI-8641)
  • Permissions: Prevent users with read-only access to assets from saving or modifying asset details (UNI-8165)
  • Usage tracking: Fixed an issue where some entries were not tracked properly when referenced inside of a "Multiple entries" archetype
  • Usage tracking: Unused data resources are now excluded from the usage data (previously just adding but not referencing a data resource would count as usage)

Package update:

Uniform packages published with version 20.49.3

Bug FixesFeatures