MCP.so
Sign In

PHP MCP Protocol Server

@Lucasdoreac

About PHP MCP Protocol Server

Servidor MCP para PHP Universal - integra PHP com o protocolo Model Context Protocol

Basic information

Category

Other

License

MIT license

Runtime

node

Transports

stdio

Publisher

Lucasdoreac

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "php-mcp-protocol-server": {
      "type": "http",
      "url": "http://localhost:7654"
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is PHP MCP Protocol Server?

PHP MCP Protocol Server is a server implementation of the Model Context Protocol (MCP) for PHP, enabling integration of PHP with Anthropic’s Claude AI. It uses the official MCP SDK to provide a robust, protocol‑compliant bridge that lets Claude execute PHP code directly.

How to use PHP MCP Protocol Server?

Install globally with npm install -g php-mcp-protocol-server and start the server using php-mcp-server. Alternatively, install locally via npm, clone from GitHub, and run npm start. The server listens on port 7654 by default (override with MCP_PORT environment variable). Before using, verify the PHP environment with npm run verify. In the Claude Desktop app, configure a local MCP tool pointing to localhost:7654.

Key features of PHP MCP Protocol Server

  • Direct PHP code execution from Claude AI
  • Based on Anthropic’s official MCP SDK
  • Proper error and exception handling
  • Automatic cleanup of temporary files
  • PHP environment verification support

Use cases of PHP MCP Protocol Server

  • Run arbitrary PHP snippets inside Claude conversations
  • Validate PHP code output without leaving the AI interface
  • Explore PHP configuration and extensions via the phpInfo tool
  • Debug PHP scripts by observing stdout and exit codes

FAQ from PHP MCP Protocol Server

What exactly does the server allow me to do?

It exposes two MCP tools: executePhp (runs PHP code and returns output, errors, and exit code) and phpInfo (returns PHP environment details like version, extensions, and settings).

What are the runtime requirements?

Node.js v14 or higher and PHP v7.0 or higher are required. npm or yarn is needed for installation.

How do I integrate with Claude AI?

Start the server, then in Claude Desktop configure a local MCP tool to point at localhost:7654 (or the port you set). You can then ask Claude to execute PHP code.

What if the server won’t start?

Verify that PHP is installed and accessible in your system’s PATH, ensure port 7654 (or the configured port) is free, and check the server logs for detailed error messages.

Is there any authentication or transport configuration?

The README does not mention authentication or alternative transports beyond the default HTTP‑based MCP endpoint on localhost.

Comments

More Other MCP servers