contentful-mcp

list_assets

List assets in a space. Returns a maximum of 3 items per request. Use skip parameter to paginate through results.

Input Schema

NameRequiredDescriptionDefault
environmentIdYesThe ID of the environment within the space, by default this will be called Mastermaster
limitYesMaximum number of items to return (max: 3)
skipYesNumber of items to skip for pagination
spaceIdYesThe ID of the Contentful space. This must be the space's ID, not its name, ask for this ID if it's unclear.

Input Schema (JSON Schema)

{ "properties": { "environmentId": { "default": "master", "description": "The ID of the environment within the space, by default this will be called Master", "type": "string" }, "limit": { "default": 3, "description": "Maximum number of items to return (max: 3)", "maximum": 3, "type": "number" }, "skip": { "default": 0, "description": "Number of items to skip for pagination", "type": "number" }, "spaceId": { "description": "The ID of the Contentful space. This must be the space's ID, not its name, ask for this ID if it's unclear.", "type": "string" } }, "required": [ "limit", "skip", "spaceId", "environmentId" ], "type": "object" }