PHP MCP Server
MCP ServerFree** (PHP) - Core PHP implementation for the Model Context Protocol (MCP) server
Capabilities13 decomposed
attribute-based mcp element discovery and registration
Medium confidenceAutomatically discovers and registers MCP elements (Tools, Resources, Prompts, Resource Templates) by scanning the filesystem for PHP classes annotated with #[McpTool], #[McpResource], #[McpResourceTemplate], and #[McpPrompt] attributes. The Discoverer component uses reflection to parse these attributes and automatically register handlers without manual configuration, enabling zero-boilerplate exposure of application functionality to AI assistants.
Uses PHP 8.1+ attributes combined with filesystem scanning and reflection to enable declarative, zero-boilerplate registration of MCP elements. The Discoverer component automatically parses method signatures and docblocks to generate JSON schemas without manual schema definition, eliminating the need for separate schema files or registration code.
Faster developer iteration than manual registration approaches because attributes co-locate element definition with implementation, reducing context switching and configuration drift.
automatic json schema generation from method signatures and docblocks
Medium confidenceGenerates JSON Schema 2020-12 compliant schemas automatically by parsing PHP method signatures, type hints, and docblock annotations using reflection and docblock parsing. This eliminates manual schema definition while supporting complex types (unions, generics, nullable types) and docstring-based parameter descriptions, enabling AI clients to understand tool capabilities without separate schema files.
Combines PHP reflection API with docblock parsing to generate complete JSON schemas from method signatures without requiring separate schema definitions. Supports modern PHP type system features (union types, named arguments, typed properties) and automatically extracts parameter descriptions from docblocks, creating self-documenting MCP elements.
Eliminates schema maintenance burden compared to frameworks requiring manual schema definition, because schema is derived directly from code and stays synchronized automatically.
json-rpc 2.0 protocol implementation with request/response handling
Medium confidenceImplements the JSON-RPC 2.0 specification for message exchange between client and server. The Protocol component parses incoming JSON-RPC requests, routes them to appropriate handlers through the Dispatcher, and formats responses according to JSON-RPC 2.0 spec (including error responses with error codes and messages). Supports both request/response and notification patterns, enabling bidirectional communication between MCP clients and servers.
Implements complete JSON-RPC 2.0 protocol handling including request parsing, routing, response formatting, and error responses with standardized error codes. Supports both request/response and notification patterns, enabling the same Protocol component to handle all JSON-RPC message types across different transports.
More standards-compliant than custom RPC implementations because it strictly follows JSON-RPC 2.0 specification, ensuring compatibility with any JSON-RPC 2.0 client without custom protocol negotiation.
fluent serverbuilder configuration interface
Medium confidenceProvides a fluent, chainable API for configuring the MCP server through the ServerBuilder class. Developers use method chaining to register transports, set up dependency injection, configure caching, enable session management, and register MCP elements. The builder pattern enables readable, self-documenting server configuration that can be version-controlled and easily modified without touching core server logic.
Implements fluent builder pattern for server configuration, enabling readable method chaining for setting up transports, DI containers, caching, sessions, and element discovery. The builder accumulates configuration and creates a fully-initialized Server instance, making configuration self-documenting and easy to modify.
More readable than array-based configuration because method chaining makes configuration intent explicit and enables IDE autocomplete, reducing configuration errors and improving maintainability.
streaming http transport with resumability and event sourcing
Medium confidenceImplements StreamableHttpServerTransport for production deployments, supporting resumable connections and event sourcing patterns. Clients can reconnect and resume interrupted streams without losing messages, and the server can emit events as Server-Sent Events (SSE) or streaming JSON responses. This transport is recommended over deprecated HttpServerTransport for new projects requiring reliable message delivery and connection resilience.
Implements resumable HTTP streaming with event sourcing, allowing clients to reconnect and resume interrupted streams without losing messages. Supports both Server-Sent Events and streaming JSON response modes, providing flexibility for different client implementations while maintaining reliable message delivery.
More resilient than deprecated HttpServerTransport because it supports connection resumption and event sourcing, enabling clients to recover from network interruptions without losing messages or requiring full reconnection.
transport-agnostic request handling with multiple protocol implementations
Medium confidenceAbstracts network communication through pluggable transport implementations (StdioServerTransport, HttpServerTransport, StreamableHttpServerTransport) that all conform to a common interface. The Protocol component handles JSON-RPC 2.0 message parsing and routing independently of transport, allowing the same server logic to operate over STDIO, HTTP+SSE, or streaming HTTP without code changes.
Implements transport abstraction through a common interface that decouples Protocol (JSON-RPC 2.0 handling) from network communication. Built on ReactPHP for non-blocking I/O, enabling high-concurrency HTTP handling while maintaining identical server logic across STDIO, HTTP+SSE, and streaming HTTP transports.
More flexible than single-transport implementations because the same server code runs unchanged over STDIO for CLI tools, HTTP for web integration, and streaming HTTP for production deployments with resumability and event sourcing.
psr-11 dependency injection with automatic handler resolution
Medium confidenceIntegrates with PSR-11 Container interface to enable dependency injection for MCP element handlers. The ServerBuilder and Dispatcher automatically resolve handler dependencies from the container, allowing handlers to declare constructor dependencies that are automatically injected without manual wiring. Supports both explicit container configuration and automatic resolution of registered services.
Implements automatic handler resolution through PSR-11 Container integration, allowing handlers to declare constructor dependencies that are automatically injected by the Dispatcher. This eliminates manual service instantiation in handler code and enables seamless integration with existing PHP framework containers.
Integrates more naturally with existing PHP ecosystems than frameworks requiring custom service registries, because it uses the standard PSR-11 interface that Laravel, Symfony, and other major frameworks already support.
multi-backend session management with persistence and garbage collection
Medium confidenceProvides SessionManager component supporting multiple storage backends (in-memory, file-based, Redis, database) for maintaining client session state across requests. Implements automatic garbage collection of expired sessions and supports configurable TTL per session, enabling stateful MCP interactions where clients can maintain context across multiple tool invocations without re-sending full context.
Implements pluggable session backends with automatic garbage collection, allowing the same SessionManager code to work with in-memory, file, Redis, or database storage. Supports configurable TTL per session and automatic cleanup of expired sessions, enabling stateful MCP interactions without manual session lifecycle management.
More flexible than single-backend session implementations because it supports multiple storage backends through a common interface, allowing developers to choose persistence strategy (in-memory for development, Redis for production) without code changes.
event-driven architecture with reactphp for non-blocking i/o
Medium confidenceBuilt on ReactPHP's event loop to enable non-blocking, asynchronous request handling with high concurrency. Components communicate through events rather than direct method calls, allowing the server to handle multiple concurrent client connections without blocking. The event-driven design enables long-running operations (database queries, API calls) to execute concurrently without spawning threads or processes.
Leverages ReactPHP's event loop to implement non-blocking I/O and high-concurrency request handling without threads or processes. Components communicate through events rather than direct calls, enabling the server to handle multiple concurrent clients efficiently while executing I/O-bound operations asynchronously.
Achieves higher concurrency than traditional synchronous PHP servers without the overhead of process spawning or thread management, because ReactPHP's event loop multiplexes I/O operations across a single process.
tool execution with input validation and error handling
Medium confidenceExecutes MCP tools by routing requests through the Dispatcher to registered tool handlers, validating input against the auto-generated JSON schema before execution. Implements structured error handling that captures exceptions and returns them as JSON-RPC error responses, enabling AI clients to understand and recover from tool execution failures without server crashes.
Implements tool execution through a Dispatcher that validates inputs against auto-generated JSON schemas before routing to handlers, and captures exceptions as structured JSON-RPC error responses. This prevents invalid inputs from reaching handlers and ensures tool failures are communicated to clients as structured errors rather than server crashes.
More robust than frameworks without built-in input validation because validation happens before handler execution, preventing malformed inputs from causing unexpected behavior in tool code.
resource and resource template serving with uri pattern matching
Medium confidenceServes static resources and dynamic resource templates through a URI-based access pattern. Resources are static content (files, strings) accessible via fixed URIs, while Resource Templates use URI patterns with variable substitution (e.g., `file://{path}`) to dynamically generate content. The Registry stores both types and the Dispatcher routes requests based on URI matching, enabling AI clients to access application data through a standardized resource interface.
Implements both static resources and dynamic resource templates with URI pattern matching, allowing the same Registry to serve fixed content and generate dynamic content based on URI parameters. Resource Templates use variable substitution in URI patterns (e.g., `file://{path}`) to enable parameterized resource generation without separate endpoint definitions.
More flexible than single-resource implementations because it supports both static and dynamic resources through a unified interface, enabling AI clients to access both fixed application data and parameterized content through the same resource discovery mechanism.
prompt template generation with message composition
Medium confidenceDefines and serves prompt templates that generate conversation messages for AI clients. Prompts are registered with templates containing placeholders that are filled with arguments at runtime, enabling the server to provide context-specific conversation starters or system prompts to AI assistants. The Registry stores prompt definitions and the Dispatcher routes prompt requests, allowing AI clients to discover and use server-provided prompts.
Implements prompt templates as first-class MCP elements with placeholder substitution, allowing servers to provide context-specific conversation starters and system prompts to AI clients. Prompts are discoverable through the Registry, enabling AI clients to understand server-provided guidance without hardcoding prompt text.
More discoverable than hardcoded prompts because AI clients can query available prompts through the MCP protocol, enabling dynamic prompt selection based on server capabilities and application state.
caching layer with psr-16 integration
Medium confidenceIntegrates with PSR-16 Cache interface to enable caching of frequently accessed data (schemas, resources, prompts, session data). The Registry and other components can use the cache to avoid expensive operations (reflection, file I/O, database queries). Supports multiple cache backends (in-memory, file, Redis, APCu) through the PSR-16 interface, with configurable TTL per cache entry.
Implements caching through PSR-16 Cache interface, allowing the same server code to work with multiple cache backends (in-memory, file, Redis, APCu) without code changes. Caches expensive operations like schema generation and resource retrieval, reducing reflection and I/O overhead.
More flexible than single-backend caching because it supports multiple cache implementations through the standard PSR-16 interface, allowing developers to choose cache strategy (in-memory for development, Redis for production) without code changes.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with PHP MCP Server, ranked by overlap. Discovered automatically through the match graph.
@iflow-mcp/mcp-starter
ModelContextProtocol starter server
MCP Declarative Java SDK
** Annotation-driven MCP servers development with Java, no Spring Framework Required, minimize dependencies as much as possible.
@siemens/element-mcp
Element MCP server
PHP MCP SDK
[Python MCP SDK](https://github.com/modelcontextprotocol/python-sdk)
llm-analysis-assistant
** <img height="12" width="12" src="https://raw.githubusercontent.com/xuzexin-hz/llm-analysis-assistant/refs/heads/main/src/llm_analysis_assistant/pages/html/imgs/favicon.ico" alt="Langfuse Logo" /> - A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and ca
@modelcontextprotocol/server-everything
MCP server that exercises all the features of the MCP protocol
Best For
- ✓PHP developers building MCP servers who want minimal configuration overhead
- ✓Teams migrating existing PHP applications to expose functionality via MCP
- ✓Developers who prefer declarative (attribute-based) over imperative registration
- ✓PHP developers who want to avoid maintaining separate schema files
- ✓Teams building MCP servers where code and schema must stay in sync
- ✓Projects using modern PHP type hints and docblock standards
- ✓MCP server implementations requiring JSON-RPC 2.0 compliance
- ✓Developers building MCP clients that need to communicate with PHP servers
Known Limitations
- ⚠Requires PHP 8.1+ for attribute support
- ⚠Filesystem scanning may add startup latency for very large codebases (1000+ files)
- ⚠Discoverer must be explicitly configured with target directories; no automatic global scanning
- ⚠Complex custom types may not generate optimal schemas; may require manual schema overrides
- ⚠Docblock parsing depends on consistent formatting; non-standard docblock styles may be misinterpreted
- ⚠Union types and intersection types have limited schema representation in JSON Schema
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
** (PHP) - Core PHP implementation for the Model Context Protocol (MCP) server
Categories
Alternatives to PHP MCP Server
Are you the builder of PHP MCP Server?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →