Skip to content

Commit 2b4f1d4

Browse files
docL Update README
Updated the description and keywords in composer.json to reflect the new SDK branding. Modified README.md to clarify that the project is a PHP SDK for building Model Context Protocol (MCP) servers, enhancing the overall messaging and focus on SDK capabilities. [skip ci]
1 parent 9dbcfb1 commit 2b4f1d4

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# PHP MCP Server
1+
# PHP MCP Server SDK
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/php-mcp/server.svg?style=flat-square)](https://packagist.org/packages/php-mcp/server)
44
[![Total Downloads](https://img.shields.io/packagist/dt/php-mcp/server.svg?style=flat-square)](https://packagist.org/packages/php-mcp/server)
55
[![Tests](https://img.shields.io/github/actions/workflow/status/php-mcp/server/tests.yml?branch=main&style=flat-square)](https://github.com/php-mcp/server/actions/workflows/tests.yml)
66
[![License](https://img.shields.io/packagist/l/php-mcp/server.svg?style=flat-square)](LICENSE)
77

8-
**A comprehensive and production-ready PHP implementation of the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) server. Built for PHP 8.1+ with modern architecture, extensive testing, and flexible transport options.**
8+
**A comprehensive PHP SDK for building [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) servers. Create production-ready MCP servers in PHP with modern architecture, extensive testing, and flexible transport options.**
99

10-
The PHP MCP Server enables you to expose your PHP application's functionality as standardized MCP **Tools**, **Resources**, and **Prompts**, allowing AI assistants (like Anthropic's Claude, Cursor IDE, OpenAI's ChatGPT, etc.) to interact with your backend using the MCP standard.
10+
This SDK enables you to expose your PHP application's functionality as standardized MCP **Tools**, **Resources**, and **Prompts**, allowing AI assistants (like Anthropic's Claude, Cursor IDE, OpenAI's ChatGPT, etc.) to interact with your backend using the MCP standard.
1111

1212
## 🚀 Key Features
1313

composer.json

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
{
22
"name": "php-mcp/server",
3-
"description": "Core PHP implementation for the Model Context Protocol (MCP) server",
4-
"keywords": ["mcp", "model context protocol", "server", "php", "ai", "llm"],
3+
"description": "PHP SDK for building Model Context Protocol (MCP) servers - Create MCP tools, resources, and prompts",
4+
"keywords": [
5+
"mcp",
6+
"model context protocol",
7+
"server",
8+
"php",
9+
"php mcp",
10+
"php mcp sdk",
11+
"php mcp server",
12+
"php mcp tools",
13+
"php mcp resources",
14+
"php mcp prompts",
15+
"php model context protocol"
16+
],
517
"type": "library",
618
"license": "MIT",
719
"authors": [
@@ -46,7 +58,6 @@
4658
"PhpMcp\\Server\\Tests\\": "tests/"
4759
}
4860
},
49-
5061
"scripts": {
5162
"test": "vendor/bin/pest",
5263
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage",
@@ -60,4 +71,4 @@
6071
},
6172
"minimum-stability": "dev",
6273
"prefer-stable": true
63-
}
74+
}

0 commit comments

Comments
 (0)