Mcp Phpcs Server
@larspohlmann
Mcp Phpcs Server について
A minimal Model Context Protocol (MCP) server implemented in pure PHP that exposes phpcs_check and phpcbf_fix.
基本情報
設定
ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Mcp Phpcs Server?
Mcp Phpcs Server is a Model Context Protocol (MCP) server implemented in pure PHP with no Composer dependencies. It provides two tools for PHP coding standards: phpcs_check runs PHP_CodeSniffer to report violations, and phpcbf_fix runs PHP Code Beautifier and Fixer to automatically fix them. Designed to be copied into any project, it communicates over JSON‑RPC 2.0 via STDIO.
How to use Mcp Phpcs Server?
Make the STDIo entrypoint executable (chmod +x path/to/bin/mcp-phpcs), then configure your MCP client to launch the server using the absolute path to bin/mcp-phpcs as the command. Optionally set environment variables MCP_PHPCS_PATH, MCP_PHPCBF_PATH, and MCP_PHPCS_RULESET in the client configuration (e.g., Claude Desktop’s mcpServers block) to specify binary paths and a ruleset file.
Key features of Mcp Phpcs Server
- No Composer dependencies; pure PHP implementation
- Exposes
phpcs_checkandphpcbf_fixtools - Configurable via environment variables or
config/config.json - Auto‑discovers ruleset files (
phpcs.xml,phpcs.xml.dist,ruleset.xml) - JSON‑RPC 2.0 communication over STDIN/STDOUT
- Domain‑driven structure (
src/Domain,src/Application,src/Infrastructure)
Use cases of Mcp Phpcs Server
- Run PHP_CodeSniffer checks on a file or directory via any MCP client (e.g., Claude Desktop)
- Automatically fix coding standard violations with
phpcbf_fix - Integrate PHPCS and PHPCBF into an AI‑assisted development workflow
- Enforce project‑specific rulesets by configuring the ruleset path
FAQ from Mcp Phpcs Server
What tools does Mcp Phpcs Server provide?
It provides phpcs_check (runs PHP_CodeSniffer) and phpcbf_fix (runs PHP Code Beautifier and Fixer). Both accept a required path parameter.
How do I configure the PHPCS or PHPCBF binary paths?
Set the environment variables MCP_PHPCS_PATH and MCP_PHPCBF_PATH in your MCP client configuration. Defaults are phpcs and phpcbf on the system PATH.
Does the server require any dependencies?
No. The server is written in pure PHP and has no Composer dependencies. It only requires the phpcs and phpcbf binaries (from PHP_CodeSniffer) to be available.
How does the server discover the ruleset?
If no MCP_PHPCS_RULESET is provided, the server searches upward from the current working directory for a file named phpcs.xml, phpcs.xml.dist, or ruleset.xml.
What communication protocol does it use?
It speaks JSON‑RPC 2.0 over STDIN/STDOUT. All JSON‑RPC messages go to STDOUT; logs are written to STDERR.
「その他」の他のコンテンツ
Awesome Mlops
visengerA curated list of references for MLOps
Core Philosophy: Connect, Unify, Respond
mindsdbDelegate anything. It comes back done.

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
Maestro
mobile-dev-incPainless E2E Automation for Mobile and Web
コメント