Laravel MCP (Model Context Protocol)

by InnoGE

17 stars
328 downloads
Not rated
GitHub

About

A package for developing MCP Servers with Laravel.

Details

Author
InnoGE
GitHub stars
17
Downloads
328
Categories
Other

- Exposes Eloquent models and custom data via resource providers
- Defines tools with input schemas for AI assistant interactions
- Built‑in example tools (HelloTool, ClockTool)
- Create custom tools by implementing ToolInterface
- Test with the Modelcontext Protocol Inspector
- Integrates with Claude Desktop via STDIO transport

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Laravel MCP (Model Context Protocol)
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via Composer, then create an Artisan command using the ServesMcpServer trait. Define tools and resources in the command, then run php artisan mcp:serve. The server currently uses STDIO transport only; HTTP transport is planned. Test with the MCP Inspector or add the server to Claude Desktop by editing the claude_desktop_config.json file.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "laravel mcp (model context protocol)": {
            "laravel-mcp": {
                "command": "npx",
                "args": [
                    "@modelcontextprotocol/inspector",
                    "php",
                    "/path/to/your/app/artisan",
                    "mcp:serve"
                ]
            }
        }
    }
}

McpServers

{
    "laravel-mcp": {
        "command": "npx",
        "args": [
            "@modelcontextprotocol/inspector",
            "php",
            "/path/to/your/app/artisan",
            "mcp:serve"
        ]
    }
}

Laravel MCP (Model Context Protocol)

Latest Version on Packagist
GitHub Tests Action Status
GitHub Code Style Action Status
Total Downloads

A Laravel package that implements the Model Context Protocol (MCP), enabling seamless communication between your Laravel application and AI assistants or other systems through a standardized API.
Please note that this package is still in development and not yet ready for production use.

Installation

You can install the package via composer:

composer require innoge/laravel-mcp

Basic Usage

Setting Up an MCP Server

This package currently only supports creating MCP servers via the STDIO transport. HTTP transport is not supported yet but will be added in the future.

Create a command to serve your MCP server:

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use InnoGE\LaravelMcp\Commands\ServesMcpServer;

class McpServerCommand extends Command
{
use ServesMcpServer;

protected $signature = 'mcp:serve';
protected $description = 'Start an MCP server';

public function handle(): int
{
return $this->serveMcp('your-app-name', '1.0.0');
}

private function getTools(): array
{
return [
// List your tool classes here
];
}

private function getResources(): array
{
return [
// List your resource providers here
];
}
}

Resources

Resources allow you to expose your application's data models through the MCP protocol. The package provides two types of resource providers:

1. EloquentResourceProvider: Expose Eloquent models

use InnoGE\LaravelMcp\Resources\EloquentResourceProvider;
use App\Models\User;

// In your getResources() method:
return [
new EloquentResourceProvider(User::query(), 'users', 'A User of the Application')
];

2. InMemoryResourceProvider: Expose custom data structures or non-Eloquent data

use InnoGE\LaravelMcp\Resources\InMemoryResourceProvider;
use InnoGE\LaravelMcp\Types\Resources\ResourceContent;
use InnoGE\LaravelMcp\Types\Resources\ResourceItem;

// Create a resource provider
$resourceProvider = new InMemoryResourceProvider();

// Add example documents as resources
$resourceProvider->addResource(
new ResourceItem('doc://example/document1', 'Example Document 1', 'This is an example document', 'text/plain', 1024),
new ResourceContent('doc://example/document1', 'text/plain', 'This is the content of the document')
);

$resourceProvider->addResource(
new ResourceItem('doc://example/document2', 'Example Document 2', 'This is an example document 2', 'text/plain', 1024),
new ResourceContent('doc://example/document2', 'text/plain', 'This is the content of the document 2')
);

// In your getResources() method:
return [
$resourceProvider
];

Tools

Tools define actions that can be performed through the MCP protocol:

- Built-in Example Tools:
- HelloTool: A simple hello world example
- ClockTool: Returns the current time

- Custom Tools: Create your own by implementing the ToolInterface

use InnoGE\LaravelMcp\Tools\Examples\HelloTool;
use InnoGE\LaravelMcp\Tools\Examples\ClockTool;
use App\MCP\Tools\YourCustomTool;

// In your getTools() method:
return [
HelloTool::class,
ClockTool::class,
YourCustomTool::class,
];

Creating a Tool

Tools are the core functionality of MCP, allowing AI assistants to interact with your Laravel application. They provide a way to execute specific actions in your application through a well-defined interface.

Real-world examples of MCP tools include:
- Database Operations: Create, read, update, or delete records
- External API Integration: Make API calls to third-party services
- File Management: Upload, download, or process files
- Authentication: Verify user credentials or generate tokens
- Reporting: Generate reports or export data
- Email/Notification: Send messages to users

Example Tool:

<?php

namespace App\MCP\Tools;

use Illuminate\Support\Facades\Artisan;
use InnoGE\LaravelMcp\Tools\Tool;
use Symfony\Component\Console\Output\BufferedOutput;

class CallArtisanCommandTool implements Tool
{
/
Get the tool name
/
public function getName(): string
{
return 'call-artisan-command';
}

/
Get the tool description
/
public function getDescription(): string
{
return 'Call a Laravel Artisan command';
}

/
Get the input schema for the tool
/
public function getInputSchema(): array
{
return [
'type' => 'object',
'properties' => [
'command' => [
'type' => 'string',
'description' => 'The Artisan command to call (e.g. "migrate")',
],
],
'required' => ['command'],
];
}

/
Execute the tool with the provided arguments
/
public function execute(array $arguments): string
{
$command = $arguments['command'];

$outputBuffer = new BufferedOutput;

Artisan::call($command, [], $outputBuffer);

return $outputBuffer->fetch();
}
}

Testing your MCP Server

Use Modelcontext Protocol Inspector to test the MCP server:

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

Adding your MCP Server to Claude Desktop

Edit your Claude Desktop config file:

~/Library/Application Support/Claude/claude_desktop_config.json

Add your MCP server to the config file:

{
  "mcpServers": {
    "laravel-mcp": {
      "command": "php",
      "args": [
        "/path/to/your/app/artisan",
        "mcp:serve"
      ]
    }
  }
}

Now you can use your MCP server in Claude Desktop. Please note that Claude currently does not use MCP resources. If you want to access data of your application you can use tool calls.

Testing

composer test

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

- Tim Geisendoerfer
- All Contributors

License

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

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.