Tool tree
page: Every page
get_page_markdownAnswer
Read the current page as clean markdown. Every img.ly page ships a markdown twin written for agents; prefer this over parsing the DOM. Returns the markdown of the page currently open.
View tool JSON
{
"name": "get_page_markdown",
"kind": "answer",
"impl": "imperative",
"description": "Read the current page as clean markdown. Every img.ly page ships a markdown twin written for agents; prefer this over parsing the DOM. Returns the markdown of the page currently open.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}list_demosAnswer
List the CE.SDK live demos on img.ly (photo, video, design, and AI editing, among others) with a link to each demo page. Opening a demo page exposes further tools for that demo.
View tool JSON
{
"name": "list_demos",
"kind": "answer",
"impl": "imperative",
"description": "List the CE.SDK live demos on img.ly (photo, video, design, and AI editing, among others) with a link to each demo page. Opening a demo page exposes further tools for that demo.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}start_sales_enquiryAction
Open the IMG.LY contact sales form, where a sales enquiry can be filled in and sent. Use this from any page when the person wants pricing, a quote, or to talk to sales. Once the form is open, the submit_sales_enquiry tool becomes available to fill and send it.
View tool JSON
{
"name": "start_sales_enquiry",
"kind": "act",
"impl": "imperative",
"description": "Open the IMG.LY contact sales form, where a sales enquiry can be filled in and sent. Use this from any page when the person wants pricing, a quote, or to talk to sales. Once the form is open, the submit_sales_enquiry tool becomes available to fill and send it.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"page": "/"
}page: Demos
search_demosAnswer
Search and filter the CE.SDK demo gallery the person is looking at. Filters apply visibly on the page. Call with no arguments to clear all filters. Each call replaces the whole filter state, so include every filter you want active. Returns the matching demos with links.
View tool JSON
{
"name": "search_demos",
"kind": "answer",
"impl": "imperative",
"description": "Search and filter the CE.SDK demo gallery the person is looking at. Filters apply visibly on the page. Call with no arguments to clear all filters. Each call replaces the whole filter state, so include every filter you want active. Returns the matching demos with links.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Free-text search across demo titles, tags, and descriptions."
},
"categories": {
"type": "array",
"description": "Category filters. Any listed category matches, combined with any listed platform.",
"items": {
"type": "string",
"enum": [
"Editor UI Configurations",
"Video Editing",
"Plugins",
"Custom Built UIs",
"Customization",
"Assets",
"Templating",
"Creative Automation",
"Extensibility"
]
}
},
"platforms": {
"type": "array",
"description": "Platform filters.",
"items": {
"type": "string",
"enum": [
"iOS",
"Android",
"Web"
]
}
}
},
"additionalProperties": false
},
"page": "/demos/"
}