contentful-mcp

search_entries

Search for entries using query parameters. 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
queryYesQuery parameters for searching entries
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" }, "query": { "description": "Query parameters for searching entries", "properties": { "content_type": { "type": "string" }, "limit": { "default": 3, "description": "Maximum number of items to return (max: 3)", "maximum": 3, "type": "number" }, "order": { "type": "string" }, "query": { "type": "string" }, "select": { "type": "string" }, "skip": { "default": 0, "description": "Number of items to skip for pagination", "type": "number" } }, "required": [ "limit", "skip" ], "type": "object" }, "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": [ "query", "spaceId", "environmentId" ], "type": "object" }