PHPackages                             neoblack/webmcp - 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. neoblack/webmcp

ActiveTypo3-cms-extension

neoblack/webmcp
===============

Declarative WebMCP tool framework for TYPO3: define agent tools server-side, expose them via document.modelContext, with optional first-party usage analytics.

v0.3.0(1mo ago)124↓66.7%1[1 PRs](https://github.com/NeoBlack/webmcp/pulls)GPL-2.0-or-laterPHPPHP ^8.2CI passing

Since Jul 18Pushed 1mo agoCompare

[ Source](https://github.com/NeoBlack/webmcp)[ Packagist](https://packagist.org/packages/neoblack/webmcp)[ RSS](/packages/neoblack-webmcp/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (2)Dependencies (14)Versions (5)Used By (0)

WebMCP for TYPO3
================

[](#webmcp-for-typo3)

Warning

**Experimental.** This extension is experimental and not yet ready for production use. It is built on top of [WebMCP](https://github.com/webmachinelearning/webmcp), which is itself an experimental, early-stage proposal. Both the underlying specification and this extension's API may change or break at any time without notice. Use at your own risk.

A declarative [WebMCP](https://github.com/webmachinelearning/webmcp) tool framework for TYPO3. Define agent tools server-side as small PHP providers; the extension collects them into a per-page manifest and a generic JavaScript runtime registers each tool against `document.modelContext` / `navigator.modelContext`. Optional, privacy-preserving first-party analytics are included.

- **Extension key:** `neoblack_webmcp`
- **Composer:** `neoblack/webmcp`
- **Requires:** TYPO3 v14.3+, PHP 8.2+

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

[](#installation)

```
composer require neoblack/webmcp
vendor/bin/typo3 extension:setup --extension neoblack_webmcp
```

In a nutshell
-------------

[](#in-a-nutshell)

A tool is a PHP class implementing `\Neoblack\Webmcp\Tool\ToolProviderInterface`. It returns a `Manifest` naming one of four behaviour **primitives** — `navigate`, `search`, `mailto`, `static` — whose generic interpreters live in `webmcp.js`. New tools are therefore pure server-side configuration; no JavaScript required. For anything the primitives don't cover, a manifest may point at its own ES module.

```
#[AutoconfigureTag('webmcp.tool')] // inherited from the interface
final class GreetToolProvider implements ToolProviderInterface
{
    public function name(): string { return 'greet'; }

    public function manifest(ContentObjectRenderer $cObj, array $processedData): ?Manifest
    {
        return new Manifest(
            name: 'greet',
            description: 'Return a greeting.',
            inputSchema: ['type' => 'object', 'properties' => new \stdClass()],
            primitive: Primitive::StaticList,
            data: ['items' => [['text' => 'Hello']], 'resultKey' => 'messages',
                   'text' => ['line' => '{text}']],
        );
    }
}
```

Wire the `ToolManifestProcessor`, render its JSON block as ``, and include `webmcp.js`. See the full documentation under [`Documentation/`](Documentation/Index.rst).

Analytics
---------

[](#analytics)

An optional first-party endpoint (`/webmcp-event`) logs one row per tool call — tool name + coarse client hint only, no PII — visualised in the **Web → WebMCP** backend module. Disable via the `analyticsEnabled` extension setting.

License
-------

[](#license)

GPL-2.0-or-later.

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance92

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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

Every ~1 days

Total

3

Last Release

44d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1128085?v=4)[Frank Nägler](/maintainers/NeoBlack)[@NeoBlack](https://github.com/NeoBlack)

---

Top Contributors

[![NeoBlack](https://avatars.githubusercontent.com/u/1128085?v=4)](https://github.com/NeoBlack "NeoBlack (35 commits)")

---

Tags

typo3webmcpaiTYPO3 CMSagentsWebMCPmodelContext

###  Code Quality

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/neoblack-webmcp/health.svg)

```
[![Health](https://phpackages.com/badges/neoblack-webmcp/health.svg)](https://phpackages.com/packages/neoblack-webmcp)
```

###  Alternatives

[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103629.7k76](/packages/friendsoftypo3-content-blocks)[typo3/cms-fluid-styled-content

TYPO3 CMS Fluid Styled Content - Fluid templates for TYPO3 content elements.

229.9M469](/packages/typo3-cms-fluid-styled-content)[netresearch/rte-ckeditor-image

Image support in CKEditor for the TYPO3 ecosystem - by Netresearch

631.1M8](/packages/netresearch-rte-ckeditor-image)[typo3/cms-seo

TYPO3 CMS SEO - SEO features including specific fields for SEO purposes, rendering of HTML meta tags and sitemaps.

169.3M185](/packages/typo3-cms-seo)[typo3/cms-form

TYPO3 CMS Form - Flexible TYPO3 frontend form framework that comes with a backend editor interface.

147.9M307](/packages/typo3-cms-form)[typo3/cms-adminpanel

TYPO3 CMS Admin Panel - The Admin Panel displays information about your site in the frontend and contains a range of metrics including debug and caching information.

115.9M74](/packages/typo3-cms-adminpanel)

PHPackages © 2026

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