php-client-implementation

A set of PHP guidelines for building clients that communicate with MCP servers. MCP is a protocol for connecting an application to external tools or services.

In plain words
What is it for?
Implementing a PHP client class, connecting it through a transport, initializing the protocol, and handling client and server capabilities.
Why use it?
It gives the client a defined structure for connecting, initializing, and managing protocol and server capability information.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/dalehurley/php-mcp-sdk/php-client-implementation
Clone the repo
git clone --depth 1 https://github.com/dalehurley/php-mcp-sdk

Made for: Cursor.

Per session 8 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,926 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00008 $0.01926
Opus 5 $0.00004 $0.00963
Sonnet 5 $0.00002 $0.00385
Haiku 4.5 $0.00001 $0.00193

Measured yesterday against content hash e86f0454eacf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

php-client-implementation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/php-client-implementation.mdc · 336 lines

How it starts

The opening of the file, as written. The whole thing — 336 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PHP MCP Client Implementation Guide

Client Class Structure

The Client class handles communication with MCP servers and manages the protocol lifecycle.

Basic Client Implementation

namespace MCP\Client;

use MCP\Shared\Protocol;
use MCP\Shared\Transport;
use MCP\Types\Implementation;
use MCP\Types\ClientCapabilities;
use MCP\Types\ServerCapabilities;
use React\Promise\Promise;
use React\Promise\PromiseInterface;

class Client extends Protocol {
    private ?ServerCapabilities $serverCapabilities = null;
    private ?Implementation $serverVersion = null;
    private ClientCapabilities $capabilities;
    private ?string $instructions = null;

    public function __construct(
        Implementation $clientInfo,
        ?ClientOptions $options = null
    ) {
        parent::__construct($clientInfo, $options);
        $this->capabilities = $options?->capabilities ?? new ClientCapabilities();
    }

    /**
     * Connect to server and perform initialization
     */
    public function connect(Transport $transport): PromiseInterface {
        return $this->protocol->connect($transport)
            ->then(function () {
                return $this->initialize();
            });
    }
}

Initialization Flow

private function initialize(): PromiseInterface {
    return $this->request([
        'method' => 'initialize',
        'params' => [
            'protocolVersion' => self::LATEST_PROTOCOL_VERSION,
            'capabilities' => $this->capabilities->toArray(),
            'clientInfo' => [
                'name' => $this->clientInfo->getName(),
                'version' => $this->clientInfo->getVersion()
            ]
        ]
    ])->then(function (array $result) {
        // Validate protocol version
        if (!in_array($result['protocolVersion'], self::SUPPORTED_PROTOCOL_VERSIONS)) {
            throw new McpError(
                ErrorCode::InvalidRequest,
                "Unsupported protocol version: {$result['protocolVersion']}"
            );
        }

        $this->serverCapabilities = ServerCapabilities::fromArray($result['capabilities']);
        $this->serverVersion = Implementation::fromArray($result['serverInfo']);
        $this->instructions = $result['instructions'] ?? null;

        // Send initialized notification
        return $this->notify([
            'method' => 'notifications/initialized'
        ]);
    });
}

Read the full file on GitHub · 336 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 336 lines · 8 tokens per session scan A e86f0454eacf

Subscribe to this mod's changes

php-client-implementation is a cursor rule published in the GitHub repository dalehurley/php-mcp-sdk (27 stars, last pushed 9mo ago), licensed MIT. It adds 8 tokens to every session and 1,926 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.