sjs / neos-mcp-feature-set-resources
SJS.Neos.MCP Feature Set for Resources
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:neos-package
pkg:composer/sjs/neos-mcp-feature-set-resources
Requires
This package is auto-updated.
Last update: 2026-03-01 22:58:15 UTC
README
MCP FeatureSet package for Neos.Media. Provides tools for browsing asset collections, tags, and media assets.
FeatureSets & Tools
MediaFeatureSet — prefix media
| Tool | Description |
|---|---|
media_list_collections |
Lists all asset collections with title, asset count, and assigned tags |
media_list_tags |
Lists all tags with label, optional parent label, and asset count |
media_list_media |
Lists media assets; optionally filtered by tag label and/or collection title |
media_list_media — filter parameters
| Parameter | Type | Description |
|---|---|---|
tag |
string (optional) | Filter by tag label |
collection |
string (optional) | Filter by asset collection title |
Both filters can be combined (intersection). Omitting both returns all assets.
Output shape per asset
{
"<asset-identifier>": {
"identifier": "...",
"title": "...",
"caption": "...",
"mediaType": "image/jpeg",
"filename": "photo.jpg",
"fileSize": 204800,
"tags": { "<tag-id>": "tag label", ... },
"collections": { "<collection-id>": "collection title", ... }
}
}
Tags and collections are keyed by their persistence identifier so callers can reference them unambiguously.