ecourty/mcp-server-bundle

A Symfony Bundle to create MCP servers

dev-main 2025-06-16 07:59 UTC

This package is auto-updated.

Last update: 2025-06-16 07:59:47 UTC


README

PHP CI

A powerful Symfony bundle for handling MCP (Message Control Protocol) server implementations, providing tools for JSON-RPC request handling and tool management.
Read the official MCP specification.

Warning

The specification of the Model Context Protocol (MCP) changes frequently. This bundle will evolve along with the specification, so please ensure you are using the latest version of the bundle.
The CHANGELOG can be found here.

Table of Contents

Getting Started

The MCP Server Bundle provides a structured way to create and manage tools that can be used by clients via JSON-RPC requests.
It includes features for MCP tool management, and JSON-RPC method handling.

This bundle is designed to be flexible and extensible, allowing developers to create custom tool handlers and method handlers as needed.
MethodHandlers and ToolHandlers are registered and autowired using attributes, making it easy to define and manage your own tools.

Installation

  1. Install the MCP Server Bundle via Composer:
composer require ecourty/mcp-server-bundle
  1. Add the bundle to your config/bundles.php (if not using Symfony Flex):
return [
    // ...
    Ecourty\McpServerBundle\McpServerBundle::class => ['all' => true],
];
  1. Configure the routes in config/routes/mcp.yaml:
mcp_controller:
  path: /mcp
  controller: mcp_server.entrypoint_controller

Tools

Tools are the core components of the MCP Server Bundle. They allow you to define and manage custom logic that can be triggered by clients.

Creating Tools

  1. Create a new class that will handle your tool logic
  2. Use the #[AsTool] attribute to register your tool
  3. Define the input schema for your tool using a class with validation constraints and OpenAPI attributes
  4. Implement the __invoke method to handle the tool logic and return a ToolResult

As Tool classes are services within the Symfony application, any dependency can be injected in it, using the constructor, like any other service.

Example:

  • Tool input schema class:
#[OA\Schema(required: ['emailAddress', 'username'])]
class CreateUserSchema
{
    #[Assert\Email]
    #[Assert\NotBlank]
    #[Assert\Length(min: 5, max: 255)]
    #[OA\Property(description: 'The email address of the user', type: 'string', maxLength: 255, minLength: 5, nullable: false)]
    public string $emailAddress;

    #[Assert\NotBlank]
    #[Assert\Length(min: 3, max: 50)]
    #[OA\Property(description: 'The username of the user', type: 'string', maxLength: 50, minLength: 3, nullable: false)]
    public string $username;
}
  • Tool class:
use App\Schema\CreateUserSchema;
use Ecourty\McpServerBundle\Attribute\AsTool;
use Ecourty\McpServerBundle\Attribute\ToolAnnotations;
use Ecourty\McpServerBundle\IO\TextToolResult;
use Ecourty\McpServerBundle\IO\ToolResult;

#[AsTool(
    name: 'create_user', # Unique identifier for the tool, used by clients to call it
    description: 'Creates a new user in the system', # This description is used by LLMs to understand the tool's purpose
    annotations: new ToolAnnotations(
        title: 'Create a user', // A human-readable title for the tool, useful for documentation
        readOnlyHint: false, // Defines the request is not read-only (creates a user)
        destructiveHint: false, // Defines the request is not destructive (does not delete data)
        idempotentHint: false, // Defines the request cannot be repeated without changing the state
        openWorldHint: false, // The tool does not interact with external systems
    )
)]
class CreateUserTool
{
    public function __invoke(CreateUserSchema $createUserSchema): ToolResult
    {
        // Your logic here...
        return new ToolResult([new TextToolResult('User created successfully!')]);
    }
}

Tool Events

The bundle provides several events that you can listen to:

  • ToolCallEvent: Dispatched before a tool is called, contains the tool name and input data
  • ToolResultEvent: Dispatched after a tool has been called, contains the result of the tool call
  • ToolCallExceptionEvent: Dispatched when a tool throws an exception, contains the tool name, input data and throwable

Example of event listener:

use Ecourty\McpServerBundle\Event\ToolCallEvent;
use Symfony\Component\EventDispatcher\Attribute\AsEventListener;

#[AsEventListener(event: ToolCallEvent::class)]
class ToolCallListener
{
    public function __invoke(ToolCallEvent $event): void
    {
        // Your logic here...
    }
}

Tool Results

The MCP specification states that tool results should consist of an array of objects.
The bundle provides several result types that can be combined in a single ToolResult object:

  • TextToolResult: For text-based results
  • ImageToolResult: For image results
  • AudioToolResult: For audio results
  • ResourceToolResult: For file or resource results

All tool results must be wrapped in a ToolResult object, which can contain multiple results and handle error state.

Example:

<?php

use App\Schema\ReadFileSchema;
use Ecourty\McpServerBundle\Attribute\AsTool;
use Ecourty\McpServerBundle\IO\TextToolResult;
use Ecourty\McpServerBundle\IO\ToolResult;

#[AsTool(name: 'read_file', description: 'Reads a file and returns its content')]
class MyTool
{
    public function __invoke(ReadFileSchema $payload): ToolResult
    {
        $fileContent = file_get_contents($payload->filePath);
        $anotherFileContent = file_get_contents($payload->anotherFilePath);

        // Create individual results
        $textResult = new TextToolResult($fileContent);
        $anotherTextResult = new TextToolResult($anotherFileContent);

        // Combine them in a ToolResult
        return new ToolResult([
            $textResult,
            $anotherTextResult,
        ]);
    }
}

Error handling example:

use Ecourty\McpServerBundle\IO\TextToolResult;
use Ecourty\McpServerBundle\IO\ToolResult;

class MyTool
{
    public function __invoke(): ToolResult
    {
        try {
            // Your logic here...
            return new ToolResult([
                new TextToolResult('Success!')
            ]);
        } catch (\Exception $e) {
            return new ToolResult(
                [new TextToolResult($e->getMessage())],
                isError: true
            );
        }
    }
}

The ToolResult class provides the following features:

  • Combine multiple results of different types
  • Handle error state
  • Automatic serialization to the correct format
  • Type safety for all results

Input Schema Management

The bundle provides robust input validation and sanitization through schema-based deserialization.
Input schemas are extracted from the __invoke method of classes with the #[AsTool] attribute, allowing you to define the expected input structure and validation rules.

  1. Define your input schema class:
<?php

use OpenApi\Attributes as OA;
use Symfony\Component\Validator\Constraints as Assert;

class CreateUser
{
    #[Assert\NotBlank]
    #[Assert\Length(min: 2, max: 50)]
    #[OA\Property(type: 'string', description: 'The name of the user', nullable: false)]
    private string $name;

    #[Assert\NotBlank]
    #[Assert\Email]
    #[OA\Property(type: 'string', description: 'The email address of the user', nullable: false)]
    private string $email;

    // Getters and setters...
}
  1. The bundle will automatically:
    • Understand the OA attributes for OpenAPI-based documentation in tools/list
    • Deserialize incoming JSON data into your schema class
    • Validate all constraints defined in your schema
    • Sanitize input data

This ensures that your tool handlers always receive properly validated and sanitized data.

JSON-RPC Methods

The bundle provides a robust system for handling JSON-RPC requests.

Built-in Methods

  1. initialize

    • Called when a client first connects to the server
    • Returns server information and capabilities
    • Essential for client-server handshake
  2. tools/list

    • Lists all available tools on the server
    • Returns tool metadata including names, descriptions, and input schemas
    • Used by clients to discover available tools
  3. tools/call

    • Executes a specific tool
    • Handles input validation and tool execution
    • Returns the tool's result or error information

These methods are automatically registered and handled by the bundle. You don't need to implement them yourself.

Custom Methods

You can create your own JSON-RPC method handlers for additional functionality:

  1. Create a new class that implements the MethodHandlerInterface
  2. Use the #[AsMethodHandler] attribute to register your handler

Example:

<?php

use Ecourty\McpServerBundle\Attribute\AsMethodHandler;
use Ecourty\McpServerBundle\MethodHandler\MethodHandlerInterface;

#[AsMethodHandler(
    method: 'my_method',
)]
class MyMethodHandler implements MethodHandlerInterface
{
    public function handle(JsonRpcRequest $params): array
    {
        // Your request handling logic here
        // ...

        return ['result' => 'success'];
    }
}

Method Handler Attributes

The #[AsMethodHandler] attribute supports:

  • method (string, required): The JSON-RPC method name

Developer Experience

The bundle provides several tools to help you during development:

Debug Command

The debug:mcp-tools command helps you inspect and debug your MCP tools:

# List all registered tools
php bin/console debug:mcp-tools

# Get detailed information about a specific tool
php bin/console debug:mcp-tools my_tool_name

This command is particularly useful for:

  • Verifying tool registration
  • Checking input schemas
  • Validating tool annotations

Contributing

Contributions to the MCP Server Bundle are welcome! Here's how you can help:

  1. Fork the repository
  2. Create a new branch for your feature
  3. Make your changes
  4. Submit a pull request

Please ensure your code follows our coding standards and includes appropriate tests.

Development Setup

  1. Fork and clone the repository
  2. Install dependencies
composer install
  1. Make your chages

  2. Fix the code style and run PHPStan

composer fix-cs
composer phpstan
  1. Run the tests
composer test

License

This bundle is licensed under the MIT License. See the LICENSE file for details.