PHPackages                             manoj-malviya/yii2-ai-boost - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. manoj-malviya/yii2-ai-boost

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

manoj-malviya/yii2-ai-boost
===========================

MCP Server for Yii2 applications - provides AI context and development tools via Model Context Protocol

1.0(3mo ago)01BSD-3-ClausePHPPHP &gt;=7.4

Since Mar 6Pushed 3mo agoCompare

[ Source](https://github.com/manoj-malviya/mcp-server-yii2-ai-boost)[ Packagist](https://packagist.org/packages/manoj-malviya/yii2-ai-boost)[ RSS](/packages/manoj-malviya-yii2-ai-boost/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

Yii2 AI Boost - MCP Server for Yii2 Applications
================================================

[](#yii2-ai-boost---mcp-server-for-yii2-applications)

[![Version](https://camo.githubusercontent.com/23e08f7a94c2fff170dbb373203e896c8c10d95492a81f7ec6600adc8e851067/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d312e332e302d626c7565)](https://camo.githubusercontent.com/23e08f7a94c2fff170dbb373203e896c8c10d95492a81f7ec6600adc8e851067/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d312e332e302d626c7565)[![License](https://camo.githubusercontent.com/e32287373926ec416e0928698ca4471080dc41437461969806bcfe2df245e480/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4253442d2d332d2d436c617573652d677265656e)](https://camo.githubusercontent.com/e32287373926ec416e0928698ca4471080dc41437461969806bcfe2df245e480/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4253442d2d332d2d436c617573652d677265656e)[![Yii2](https://camo.githubusercontent.com/a5ee4dbf9e86a0b9da067fcea79323106d0604cff5492bb68660c37914e1b92c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f596969322d322e302e34352d6f72616e6765)](https://camo.githubusercontent.com/a5ee4dbf9e86a0b9da067fcea79323106d0604cff5492bb68660c37914e1b92c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f596969322d322e302e34352d6f72616e6765)

Yii2 AI Boost is a Model Context Protocol (MCP) server that provides AI assistants (like Claude Code) with comprehensive tools and guidelines for faster Yii2 application development.

---

Features
--------

[](#features)

- **16 MCP Tools** - Database inspection and queries, config access, route analysis, component introspection, model and validation inspection, console command discovery, migration inspection, widget inspection, performance profiling, PHP tinker, environment inspection, logging, and FTS5-powered semantic search
- **Semantic Search** - BM25-ranked full-text search over bundled guidelines + Yii2 definitive guide (section-level results, not full files)
- **Framework Guidelines** - Comprehensive Yii2 patterns covering controllers, models, migrations, caching, auth, and more
- **IDE Integration** - Works with Claude Code, Cursor, Zed, and other MCP-compatible editors

---

Quick Start
-----------

[](#quick-start)

For experienced developers:

```
# 1. Install
composer require codechap/yii2-ai-boost:^1.3 --dev

# 2. Run installation
php yii boost/install

# 3. (Optional) Sync guidelines to your editor (Cursor/Zed)
php yii boost/sync-rules
```

That's it! Claude Code and other AI tools now have access to your application context.

---

Installation
------------

[](#installation)

### **Step 1**: Require the Package

[](#step-1-require-the-package)

```
cd /path/to/yii2/application

composer require codechap/yii2-ai-boost:^1.3 --dev
```

### **Step 2**: Run Installation Wizard

[](#step-2-run-installation-wizard)

```
php yii boost/install
```

The installation runs automatically and:

- Detects your Yii2 environment
- Generates configuration files (`.mcp.json`, `boost.json`)
- Copies framework guidelines to `.ai/guidelines/`

If installation fails, please [open an issue](https://github.com/codechap/yii2-ai-boost/issues) or reach out on [X](https://x.com/codechap).

### **Step 3**: Connect Claude Code and or your IDE

[](#step-3-connect-claude-code-and-or-your-ide)

**Claude Code integration**

After running `php yii boost/install`, a `.mcp.json` file will be generated in your project root. Claude Code will automatically detect and use this configuration to connect to the MCP server.

**Codex CLI Configuration**@todo

**Gemini CLI Configuration**@todo

**Zed Configuration**

For Zed create or open your settings file in .zed/settings.json

```
{
    "context_servers": {
      "yii2-ai-boost": {
        "enabled": true,
        "command": "php",
        "args" : [
            "yii", "boost/mcp"
        ]
      }
    }
}
```

### Generated Files

[](#generated-files)

After installation, you'll have:

- **`.mcp.json`** - MCP server configuration for Claude Code
- **`boost.json`** - Package configuration and tool list
- **`.ai/guidelines/`** - Framework and ecosystem guidelines (Markdown)
- **`.cursor/rules/yii2-boost.mdc`** - (Optional) Generated rules for Cursor
- **`.rules`** - (Optional) Generated rules for Zed

---

Usage
-----

[](#usage)

### View Yii2 information

[](#view-yii2-information)

```
php yii boost/info
```

Displays:

- Package version and configuration
- List of available MCP tools
- Status of guidelines and configuration files

### Sync Editor Rules

[](#sync-editor-rules)

```
php yii boost/sync-rules
```

Automatically generates:

- **Cursor**: `.cursor/rules/yii2-boost.mdc`
- **Zed**: `.rules` (in project root)

These files contain the core Yii2 guidelines and structural references, giving your AI editor "X-Ray vision" into Yii2 best practices without manual prompting.

### Start MCP Server (Manual Testing)

[](#start-mcp-server-manual-testing)

```
php yii boost/mcp
```

> ⚠️ **Note**: This command is invoked automatically by Cluade Code or your editor. You don't need to run it manually.

The server listens on STDIN for JSON-RPC requests and outputs responses to STDOUT.

### Update Guidelines

[](#update-guidelines)

```
php yii boost/update
```

Updates guidelines, downloads Yii2 guide from GitHub, and rebuilds the FTS5 search index.

---

Guidelines &amp; Editor Integration
-----------------------------------

[](#guidelines--editor-integration)

Yii2 AI Boost comes with a rich library of "Context Anchors" in `.ai/guidelines/`. These are Markdown files that define exact structures for Yii2 components (Controllers, Models, Migrations, etc.), preventing AI hallucinations.

### 1. Active Search (MCP Tool)

[](#1-active-search-mcp-tool)

The MCP server includes a `semantic_search` tool powered by SQLite FTS5. AI agents (like Claude or Gemini) can use this to "look up" how to do things in Yii2.

- *User:* "How do I create a migration?"
- *AI:* Calls `semantic_search(query="migration")` -&gt; Gets BM25-ranked sections -&gt; Writes perfect code.

### 2. Passive Context (Editor Rules)

[](#2-passive-context-editor-rules)

Run `php yii boost/sync-rules` to bake these guidelines directly into your editor's context.

- **Cursor**: Creates a `.mdc` rule file.
- **Zed**: Creates a `.rules` file.

This means when you open a file in Zed or Cursor, the AI *already knows* it should use `yii\web\Controller` and not `Illuminate\Routing\Controller`.

---

What is MCP?
------------

[](#what-is-mcp)

The **Model Context Protocol (MCP)** is an open standard that enables AI assistants to interact with tools and data sources. MCP allows Claude Code and other AI tools to securely access your application's context—database schemas, configuration, routes, and logs—without exposing sensitive data.

Yii2 AI Boost implements MCP v2025-11-25 using JSON-RPC 2.0 over STDIO transport. This means Claude Code communicates with your application through standard input/output, with no need for network configuration.

[Learn more about MCP](https://modelcontextprotocol.io/)

---

Available Tools
---------------

[](#available-tools)

### 1. `application_info` - Application Info

[](#1-application_info---application-info)

Get comprehensive information about your Yii2 application:

- Yii2 and PHP versions
- Application environment and debug status
- Installed modules and extensions

### 2. `database_schema` - Database Schema

[](#2-database_schema---database-schema)

Inspect your database structure:

- List all tables with row counts
- View detailed table schemas (columns, types, constraints)
- Discover Active Record models
- View indexes and foreign keys

### 3. `database_query` - Database Query

[](#3-database_query---database-query)

Execute SQL queries against your database:

- Run SELECT queries with automatic row limiting
- Support for bound parameters
- Returns execution time and row count
- Works with any configured database connection

### 4. `config_access` - Config Access

[](#4-config_access---config-access)

Access application configuration safely:

- Component configurations
- Module configurations
- Application parameters (with sensitive data redaction)

### 5. `route_inspector` - Route Inspector

[](#5-route_inspector---route-inspector)

Analyze your application routes:

- URL rules and patterns
- Module routes with prefixes
- Controller and action mappings
- RESTful API endpoints

### 6. `component_inspector` - Component Inspector

[](#6-component_inspector---component-inspector)

Introspect application components:

- List all registered components
- View component classes and configurations
- Check singleton vs new instance behavior
- Inspect component properties

### 7. `log_inspector` - Log Inspector

[](#7-log_inspector---log-inspector)

Inspect application logs from all configured sources:

- Read logs from FileTarget (text files)
- Read logs from DbTarget (database table)
- Access in-memory logs (current request)
- Filter by log level (error, warning, info, trace, profile)
- Filter by category with wildcard patterns
- Search logs by keywords
- Filter by time range
- View stack traces (for in-memory logs)

### 8. `semantic_search` - Semantic Search (FTS5)

[](#8-semantic_search---semantic-search-fts5)

Search Yii2 guidelines and documentation with full-text search:

- BM25-ranked results using SQLite FTS5 (replaces grep-based search)
- Section-level results (relevant sections, not full files)
- Supports phrases ("active record"), boolean (migration AND database), prefix (migrat\*)
- Indexes bundled guidelines + Yii2 definitive guide from GitHub
- Porter stemming ("migrating" matches "migration")
- Grep fallback if FTS5 index not built yet

### 9. `model_inspector` - Model Inspector

[](#9-model_inspector---model-inspector)

Inspect Active Record models at runtime:

- Attributes with database types, labels, and hints
- Relations (hasOne/hasMany) with link details and junction tables
- Attached behaviors with class names and properties
- Scenarios with active and safe attributes
- Fields and extra fields for API serialization
- Automatic model discovery from `@app/models`

### 10. `validation_rules` - Validation Rules

[](#10-validation_rules---validation-rules)

Inspect model validation rules and constraints:

- All validation rules with parameters and scenario filters
- Built-in vs custom validator classification
- Error messages per validator grouped by attribute
- Constraint summary (required, unique, string length, number range, email, etc.)
- Safe attributes per scenario
- Supports filtering by specific scenario

### 11. `console_command_inspector` - Console Command Inspector

[](#11-console_command_inspector---console-command-inspector)

Discover and inspect Yii2 console commands (`./yii` commands):

- List all discoverable console controllers with class and description
- Inspect individual commands with actions, options, and help text
- Drill into specific actions for arguments, types, and defaults
- Discovers from controllerMap, namespace directory, and modules
- Option aliases and PHPDoc-based help extraction

### 12. `migration_inspector` - Migration Inspector

[](#12-migration_inspector---migration-inspector)

Inspect database migrations and their status:

- Status summary with applied/pending counts and last applied migration
- Applied migration history with timestamps (sorted most recent first)
- Pending migration discovery from configured migration paths
- View individual migration source code and apply status
- Supports `@app/migrations` and additional configured paths

### 13. `widget_inspector` - Widget Inspector

[](#13-widget_inspector---widget-inspector)

Discover and inspect Yii2 widgets:

- List available widgets grouped by source (framework core, grid, application)
- Inspect widget properties with types, defaults, and PHPDoc descriptions
- Public methods with parameter signatures and return types
- Event constants (EVENT\_\*) with declaring class
- Class hierarchy chain up to yii\\base\\Widget
- Short name resolution (e.g., "ActiveForm" resolves to yii\\widgets\\ActiveForm)
- Discovers widgets from @app/widgets/, @app/components/, and modules/*/widgets/ + modules/*/components/
- **Note**: Yii2 allows widgets anywhere in the codebase. Auto-discovery scans the directories above; widgets in other locations can still be inspected by passing the full class name (e.g., `widget: "app\\custom\\MyWidget"`)

### 14. `performance_profiler` - Performance Profiler

[](#14-performance_profiler---performance-profiler)

Analyze query performance and index coverage:

- EXPLAIN query plans with driver-specific formatting (MySQL, PostgreSQL, SQLite)
- Automatic detection of full table scans, missing index usage, filesort, and temporary tables
- Per-table index analysis with foreign key column coverage
- Missing index detection for FK-like columns (\*\_id naming convention)
- Table statistics (row counts, data/index sizes for MySQL, scan counts for PostgreSQL)
- Overview mode with per-table summary and missing-index report across all tables
- Supports bound parameters for parameterized query analysis

### 15. `tinker` - Tinker

[](#15-tinker---tinker)

Execute arbitrary PHP code in the Yii2 application context:

- Run any PHP expression or statement with full access to `\Yii::$app`
- Automatic return value capture (tries expression first, falls back to statement)
- Output capture for `echo`/`print` statements
- Configurable timeout (default 5s, max 30s)
- Dangerous function blocking (exit, die, shell\_exec, system, exec, etc.)
- Return values formatted with `VarDumper` for objects
- Output truncated at 100KB, sensitive data automatically redacted

### 16. `env_inspector` - Environment Inspector

[](#16-env_inspector---environment-inspector)

Inspect environment variables, PHP extensions, and system configuration:

- Environment variables with automatic sensitive value redaction
- Prefix filter for environment variables (e.g., "DB", "APP")
- Loaded PHP extensions sorted alphabetically with count
- Key PHP configuration values (memory\_limit, max\_execution\_time, upload sizes, etc.)
- System info: OS, architecture (32/64-bit), working directory
- Configurable sections via `include` parameter

Core Tools Architecture
-----------------------

[](#core-tools-architecture)

All 16 tools provide deep introspection into your Yii2 application. They follow a consistent architecture based on the **BaseTool** abstract class, which provides:

- **Automatic Sanitization**: Sensitive data (passwords, tokens, keys) is automatically redacted from all tool outputs
- **Database Discovery**: Tools automatically detect and access configured database connections
- **JSON Schema Validation**: Input parameters are validated against defined schemas
- **Error Handling**: Graceful error responses without exposing sensitive details

### How the Log Inspector Works

[](#how-the-log-inspector-works)

The Log Inspector features a **multi-reader architecture** supporting three log storage methods:

ReaderSourceBest ForFeatures**InMemoryLogReader**Current request logs (`Yii::getLogger()->messages`)Real-time debugging during developmentFull stack traces, microsecond timestamps**FileLogReader**FileTarget text logs (`@runtime/logs/app.log`)Reviewing logs from previous requests/sessionsEfficient file handling (5MB+ files), auto-detects rotation**DbLogReader**DbTarget database table (`{{%log}}`)Production logging &amp; log aggregationFast indexed queries, precise time-range filtering---

Tools Roadmap
-------------

[](#tools-roadmap)

PhaseToolStatusDescription**1****application\_info**✓ CompleteYii2 version, environment, modules, extensions**1****database\_schema**✓ CompleteTables, columns, indexes, models, foreign keys**1****config\_access**✓ CompleteComponent, module, and parameter configurations**1****route\_inspector**✓ CompleteURL rules, routes, REST endpoints**1****component\_inspector**✓ CompleteComponent listing, classes, configurations**1****log\_inspector**✓ CompleteFile, database, and in-memory logs with filtering**1****semantic\_search**✓ CompleteFTS5-powered search over guidelines + Yii2 guide**1****database\_query**✓ CompleteExecute database queries (limited rows)**2****model\_inspector**✓ CompleteActive Record model analysis, properties, relations**2****validation\_rules**✓ CompleteModel validation rules, error messages, constraints**2****console\_command\_inspector**✓ CompleteConsole command discovery, actions, options, arguments**3****migration\_inspector**✓ CompleteMigration status, history, pending, source viewing**3****widget\_inspector**✓ CompleteAvailable widgets, properties, methods, events, hierarchy**3****performance\_profiler**✓ CompleteEXPLAIN plans, index analysis, missing index detection**4****tinker**✓ CompleteExecute arbitrary PHP code in Yii2 application context**4****env\_inspector**✓ CompleteEnvironment variables, PHP extensions, system configuration**5****semantic\_search**✓ CompleteSQLite FTS5 search over Yii2 guide + guidelines sourced from GitHub---

MCP Protocol
------------

[](#mcp-protocol)

Yii2 AI Boost implements the Model Context Protocol (MCP) v2025-11-25:

- **Transport**: STDIO (local) - reads from stdin, writes to stdout
- **Format**: JSON-RPC 2.0
- **Tools**: Expose functionality to AI assistants
- **Resources**: Provide static content (guidelines, configuration)

### Example JSON-RPC Request

[](#example-json-rpc-request)

```
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "application_info",
    "arguments": {
      "include": ["version", "environment", "modules"]
    }
  }
}
```

### Example Response

[](#example-response)

```
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "version": {
      "yii2_version": "2.0.45",
      "php_version": "8.1.2",
      "php_sapi": "cli"
    },
    "environment": {
      "yii_env": "dev",
      "yii_debug": true,
      "base_path": "/path/to/app",
      "runtime_path": "/path/to/app/runtime"
    },
    "modules": {
      "site": {
        "class": "app\\modules\\site\\Module",
        "basePath": "/path/to/app/modules/site"
      }
    }
  }
}
```

**Response Structure**:

- `jsonrpc`: Always `"2.0"` per JSON-RPC spec
- `id`: Echoes the request ID for request/response matching
- `result`: The actual tool output (sensitive data automatically redacted)

**Error Responses** use `error` instead of `result`:

```
{
  "jsonrpc": "2.0",
  "id": 1,
  "error": {
    "code": -32603,
    "message": "Internal error",
    "data": "Error details here"
  }
}
```

---

Guidelines
----------

[](#guidelines)

The package downloads comprehensive Yii2 development guidelines to `.ai/guidelines/core/yii2-2.0.45.md`. These cover application structure, controllers, models, views, components, security, performance, and console commands.

### Including Guidelines in Your AI Workflow

[](#including-guidelines-in-your-ai-workflow)

To use these guidelines with Claude Code or other AI tools, add the following lines to your project's `CLAUDE.md` file:

```
@include .ai/guidelines/core/yii2-2.0.45.md
```

Your AI assistant can also search additional guidelines on-demand via the `semantic_search` MCP tool (database, cache, auth, validation, etc.).

This ensures AI assistants have access to framework best practices and patterns when working in your project.

---

Troubleshooting
---------------

[](#troubleshooting)

### Getting Help

[](#getting-help)

If you encounter issues:

1. Check the log files listed below for error details
2. Open an issue:
3. Reach out on X:

### Log Files

[](#log-files)

When debugging, check these log files:

- **Startup Log**: `@runtime/logs/mcp-startup.log` — Server initialization and tool registration
- **Error Log**: `@runtime/logs/mcp-errors.log` — PHP errors and exceptions
- **Request Log**: `@runtime/logs/mcp-requests.log` — JSON-RPC requests and responses
- **Transport Log**: `/tmp/mcp-server/mcp-transport.log` — Low-level STDIO communication

### FAQ

[](#faq)

*This section will be expanded as common questions arise. For now, please reach out with issues or questions.*

---

Requirements
------------

[](#requirements)

ComponentVersionStatus**PHP**7.4, 8.0, 8.1, 8.2, 8.3✓ Tested**Yii2**2.0.45+✓ Compatible**Why PHP 7.4?** While PHP 7.4 is EOL, Yii2 itself still supports it. As a Yii2 extension, we maintain the same baseline to ensure developers on older Yii2 installations aren't locked out. If your Yii2 app runs, this tool should too.

**Why no caching?** All introspection data is fetched fresh on every request. This is intentional - as a development tool, you need to see the current state of your application, not stale cached data. When you change a route, schema, or component, the tools should reflect that immediately.

**Note**: PHP 8.4 support pending. Report any compatibility issues on [GitHub](https://github.com/codechap/yii2-ai-boost/issues).

Development Timeline
--------------------

[](#development-timeline)

PhaseGoalStatusTools**1**Core MVP✓ Complete8 tools + guidelines + installer**2**Model &amp; Command Introspection✓ Complete+3 tools (model inspector, validation rules, console commands)**3**Extended Tools✓ Complete+3 tools (migration inspector, widget inspector, performance profiler)**4**Advanced Tools✓ Complete+2 tools (tinker, env inspector)**5**Semantic Search✓ CompleteSQLite FTS5 index, GitHub content pipeline, BM25-ranked searchTrack progress and contribute at [GitHub](https://github.com/codechap/yii2-ai-boost).

License
-------

[](#license)

BSD 3-Clause License. See LICENSE file for details.

Contributing
------------

[](#contributing)

Contributions are welcome! Here's how to get started:

1. **Fork** the repository
2. **Clone** your fork and create a branch (`git checkout -b feature/my-feature`)
3. **Install** dependencies (`composer install`)
4. **Make** your changes
5. **Test** your changes (`composer test`)
6. **Check** code style (`composer cs-check`) and fix if needed (`composer cs-fix`)
7. **Run** static analysis (`composer analyze`)
8. **Commit** with a clear message and **push** to your fork
9. **Open** a Pull Request against `master`

### Guidelines

[](#guidelines-1)

- Follow PSR-12 code style
- Add tests for new functionality where practical
- Keep changes focused - one feature/fix per PR
- Update documentation if adding new tools or changing behavior

### Areas Where Help is Appreciated

[](#areas-where-help-is-appreciated)

- Additional test coverage (especially integration tests)
- New tools from the [roadmap](#tools-roadmap)
- Documentation improvements
- Bug reports with reproduction steps

Support &amp; Feedback
----------------------

[](#support--feedback)

- **Bug Reports &amp; Feature Requests**: [GitHub Issues](https://github.com/codechap/yii2-ai-boost/issues)
- **Direct Contact**: [@codechap on X](https://x.com/codechap)

---

**Yii2 AI Boost** - Making Yii2 development smarter and faster with AI assistants.

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance79

Regular maintenance activity

Popularity1

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 Bus Factor1

Top contributor holds 97.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

113d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2450823?v=4)[Manoj](/maintainers/manoj-malviya)[@manoj-malviya](https://github.com/manoj-malviya)

---

Top Contributors

[![codeChap](https://avatars.githubusercontent.com/u/451621?v=4)](https://github.com/codeChap "codeChap (102 commits)")[![manoj-girnar](https://avatars.githubusercontent.com/u/239952487?v=4)](https://github.com/manoj-girnar "manoj-girnar (2 commits)")[![nadar](https://avatars.githubusercontent.com/u/3417221?v=4)](https://github.com/nadar "nadar (1 commits)")

---

Tags

mcpaiyii2toolsclaudeguidelinesassistant

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/manoj-malviya-yii2-ai-boost/health.svg)

```
[![Health](https://phpackages.com/badges/manoj-malviya-yii2-ai-boost/health.svg)](https://phpackages.com/packages/manoj-malviya-yii2-ai-boost)
```

###  Alternatives

[cboxdk/statamic-mcp

MCP (Model Context Protocol) server for Statamic CMS v6 — gives AI assistants structured access to content, blueprints, assets, and more.

2611.2k](/packages/cboxdk-statamic-mcp)[stimmt/craft-mcp

MCP (Model Context Protocol) server for Craft CMS

261.3k](/packages/stimmt-craft-mcp)[mohamed-ashraf-elsaed/claude-agent-sdk-laravel

Anthropic Claude Agent SDK for PHP &amp; Laravel — build AI agents with tool use, sandboxing, MCP servers, subagents, hooks, and structured output via the Claude Code CLI

171.1k](/packages/mohamed-ashraf-elsaed-claude-agent-sdk-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
