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.
npx agentmods add rules/dalehurley/php-mcp-sdk/php-client-implementationgit clone --depth 1 https://github.com/dalehurley/php-mcp-sdkWhat 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.
| Model | Per session | Once 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 |
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.
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'
]);
});
}
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.
- yesterday First seen · 336 lines · 8 tokens per session scan A e86f0454eacf
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.
Other cursor rules, from other repositories
atelier
Atelier UI/UX and Backend Architecture Quality Gate.
cursorrules
You must strictly obey the Atelier post-generation quality gate rules for all code generation.
mcp-defender-overview
MCP Defender is a security application designed to monitor and protect Model Context Protocol (MCP) communications. It intercepts tool calls and responses, verifying them against security signatures to prevent potentially harmful operations. The following is a breakdown of the key components and files.
generate-pr-description
This rule provides guidance for generating a pull request (PR) description in this repository.
cursorrules
Root AI front door (this file). Depth: docs/AGENTS.md · Claude: docs/CLAUDE.md · Antigravity: docs/GEMINI.md · map: llms.txt Read first: docs/ai/INDEX.md → docs/ai/CANONICAL.md → docs/ai/COREREFERENCE.md Packages: docs/guides/ecosystem.md — GEMVC is a multi-package ecosystem (vendor/gemvc/). Core: gemvc/helper…
gemvc-framework
GEMVC framework rules — read vendor/gemvc before inventing patterns.