Tool tree
Export any Poe chat as a zip: full transcript plus every image, video, and file. Tag @export-chat in Poe, then upload it here. Free, runs in your browser.
list_attachmentsAnswer
List the state of the currently loaded Poe chat export: source file name, message count, attachment count, and the first attachment URLs. Returns JSON. Use after loading a share URL or uploading a transcript to see what the page contains.
View tool JSON
{
"name": "list_attachments",
"kind": "answer",
"impl": "imperative",
"description": "List the state of the currently loaded Poe chat export: source file name, message count, attachment count, and the first attachment URLs. Returns JSON. Use after loading a share URL or uploading a transcript to see what the page contains.",
"inputSchema": {
"type": "object",
"properties": {}
}
}download_attachments_zipAction
Build a zip containing the loaded chat transcript plus every attachment and download it to the user's device. Requires a chat to be loaded first (via the load_poe_share form or a transcript upload).
View tool JSON
{
"name": "download_attachments_zip",
"kind": "act",
"impl": "imperative",
"description": "Build a zip containing the loaded chat transcript plus every attachment and download it to the user's device. Requires a chat to be loaded first (via the load_poe_share form or a transcript upload).",
"inputSchema": {
"type": "object",
"properties": {}
}
}set_view_modeAction
Switch the loaded conversation between the attachment grid view and the chat transcript view.
View tool JSON
{
"name": "set_view_mode",
"kind": "act",
"impl": "imperative",
"description": "Switch the loaded conversation between the attachment grid view and the chat transcript view.",
"inputSchema": {
"type": "object",
"properties": {
"view": {
"type": "string",
"enum": [
"grid",
"chat"
],
"description": "Which view to show: 'grid' (attachments) or 'chat' (transcript)."
}
},
"required": [
"view"
]
}
}load_poe_shareAction
Load a public poe.com share link to view the conversation and its attachments. Use when the user provides a Poe share URL of the form https://poe.com/s/<share-id>.
View tool JSON
{
"name": "load_poe_share",
"kind": "act",
"impl": "declarative",
"description": "Load a public poe.com share link to view the conversation and its attachments. Use when the user provides a Poe share URL of the form https://poe.com/s/<share-id>.",
"inputSchema": {
"type": "object",
"properties": {
"share_url": {
"type": "string",
"description": "poe.com/s/<id>…"
}
}
}
}