Skip to main content
Glama

SJS.Neos.MCP

WARNING

This package may work on Neos 8 but this is NOT TESTED! It is also under development so things can change

Core MCP (Model Context Protocol) server implementation for Neos CMS 9.x.


Quick Start

Neos 9

To get started fast install this FeatureSet:

SJS.Neos.MCP.FeatureSet.Agent — Agent knowledge, analysis, and scenario tools

composer require sjs/neos-mcp sjs/neos-mcp-feature-set-agent

Then run the migration

./flow doctrine:migrate

Related MCP server: Kirby MCP

Configuration

Server instances are defined in Configuration/Settings.Server.yaml:

SJS:
  Neos:
    MCP:
      server:
        mcp: # <-- This is the default for now
          featureSets:
            myFeatureSet: \Vendor\Site\MCP\FeatureSet\MyFeatureSet

Multiple named server instances can coexist alongside mcp.

WARNING

Currently onlymcp is used as it is hardcoded for now.


Implementing new Features

Adding a new FeatureSet

  1. Create a class extending AbstractFeatureSet with #[Flow\Scope("singleton")].

  2. Implement initialize() to register tools via $this->addTool(...).

  3. Optionally override resourcesList(), resourcesRead(), resourcesTemplatesList(), completionComplete().

  4. Register the class in Configuration/Settings.Server.yaml under server.mcp.featureSets.

Tool name prefixes

AbstractFeatureSet automatically derives a prefix from the class name (e.g., WorkspaceFeatureSet → prefix workspace). Tool names are exposed as {prefix}_{tool_name}.


Development

MCP Inspector

yarn run mcp-inspector-cli

Launches the MCP Inspector UI for interactive testing.

References

  • SJS.Flow.MCP — Flow framework MCP abstractions (server, tools, FeatureSets)

  • SJS.Neos.MCP.OAuth — OAuth 2.0 authentication for the MCP server

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A simple demonstration MCP server that provides an echo tool and resource for learning how to build MCP servers. Serves as a starting point and template for creating custom MCP server implementations.
    1
    -
  • A
    license
    B
    quality
    C
    maintenance
    Dynamic MCP server for Node.js enabling runtime tool creation, management, and execution in isolated sandboxes (Docker or Node).
    8
    3 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A minimal, zero-dependency MCP server that enables defining and running tools over stdio transport, without extra features like HTTP or resources.
    29 npm
    1
    MIT