Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: laravel/mcp

v0.5.2

06 Jan 16:31
b9bdd8d

Choose a tag to compare

v0.5.1

18 Dec 11:08
10dedea

Choose a tag to compare

What's Changed

  • fix: correct header name to MCP-Session-Id by @batosai in #132

New Contributors

Full Changelog: v0.5.0...v0.5.1

v0.5.0

16 Dec 15:41
490ef1d

Choose a tag to compare

v0.4.2

09 Dec 11:57
1c7878b

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.1...v0.4.2

v0.4.1

04 Dec 17:36
27ab101

Choose a tag to compare

What's Changed

Full Changelog: v0.4.0...v0.4.1

v0.4.0

01 Dec 15:54
cd9810e

Choose a tag to compare

What's Changed

New Contributors

Breaking Change

1. Case Name Updates (#116)

Applications referencing the previous case names will need manual updates.

Required changes

  • Role::ASSISTANT should be updated to Role::Assistant
  • Role::USER should be updated to Role::User

Make sure your codebase reflects these changes before upgrading to avoid build or runtime errors.

2. JsonSchema Contract Change (#120)

Tool implementations that explicitly type hint Illuminate\JsonSchema\JsonSchema in their schema() or outputSchema() methods must update to use the contract interface Illuminate\Contracts\JsonSchema\JsonSchema.

Migration Guide

Before

use Illuminate\JsonSchema\JsonSchema;

public function schema(JsonSchema $schema): array
{
    //
}

After

use Illuminate\Contracts\JsonSchema\JsonSchema;

public function schema(JsonSchema $schema): array
{
    //
}

This affects only custom tool classes that override the schema methods. The update is minimal, requiring only the import change to the contract interface.

Full Changelog: v0.3.4...v0.4.0

v0.3.4

18 Nov 15:24
0b86fb6

Choose a tag to compare

v0.3.3

12 Nov 16:59
feb475f

Choose a tag to compare

v0.3.2

29 Oct 15:02
dc722a4

Choose a tag to compare

What's Changed

  • Ensure the property field exists in tool input schemas by @pushpak1300 in #97

New Contributors

Full Changelog: v0.3.1...v0.3.2

v0.3.1

28 Oct 15:23
13f80d6

Choose a tag to compare