Skip to content

tadhgboyle/laravel-mcp-server

Repository files navigation

laravel-mcp-server

Latest Version on Packagist Total Downloads

This package provides a Model Context Protocol (MCP) server for Laravel applications. It allows you to create and register tools and prompts that can be used in conjunction with the MCP protocol.

The MCP protocol is a standard for building tools that can interact with language models, enabling developers to create powerful applications that leverage the capabilities of these models.

Read more about the MCP protocol https://modelcontextprotocol.io.

Installation

You can install the package via composer:

composer require aberdeener/laravel-mcp-server

Usage

// Within your AppServiceProvider.php

use Aberdeener\LaravelMcpServer\Protocol\Tools\ToolRegistry;
use Aberdeener\LaravelMcpServer\Protocol\Prompts\PromptRegistry;

public function boot(): void
{
    // ...

    app(ToolRegistry::class)->registerTool(new GetWeatherTool);
    app(PromptRegistry::class)->registerPrompt(new ReviewPhpCode);
}

Experiment with the official MCP inspector:

npx @modelcontextprotocol/inspector php /path/to/your/laravel/app/artisan mcp:stdio

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages