MCP.so
登录

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.

基本信息

分类

其他

许可证

MIT

运行时

php

传输方式

stdio

发布者

larspohlmann

提交者

Lars Pohlmann

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 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_check and phpcbf_fix tools
  • 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.

评论

其他 分类下的更多 MCP 服务器