1e4f010ee7be81928a0a28a5c0d461c2264a1858source_git · leixyou/chatgpt-web-image-mcp · current release
Observed 2026-08-25T12:12:20.530Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
check_chatgpt_image_browserCheck whether the dedicated local Chrome profile is signed in and ready.Input schema{
"type": "object",
"properties": {
"surface": {
"type": "string",
"enum": [
"chat",
"images"
],
"description": "ChatGPT web surface to check"
},
"chatgpt_url": {
"type": "string",
"format": "uri",
"description": "Optional HTTPS chatgpt.com URL override"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
generate_chatgpt_web_imageUse the operator's dedicated, logged-in local ChatGPT web session to generate an image and return the captured image content. Calls are serialized.Input schema{
"type": "object",
"properties": {
"prompt": {
"type": "string",
"minLength": 1,
"maxLength": 12000,
"description": "Image generation or editing prompt"
},
"source_images": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 8,
"description": "Optional local image paths under CHATGPT_IMAGE_ALLOWED_INPUT_DIRS"
},
"chatgpt_url": {
"type": "string",
"format": "uri",
"description": "Optional HTTPS chatgpt.com conversation or project URL"
},
"surface": {
"type": "string",
"enum": [
"chat",
"images"
],
"description": "Use the regular chat/project composer or the dedicated Images composer"
},
"character_profile": {
"type": "string",
"maxLength": 4000,
"description": "Character identity constraints; omitted uses the configured default"
},
"style_profile": {
"type": "string",
"maxLength": 4000,
"description": "Visual style constraints; omitted uses the configured default"
},
"use_consistency": {
"type": "boolean",
"description": "Set false to ignore both configured consistency profiles for this call"
}
},
"required": [
"prompt"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
setup_chatgpt_image_projectCreate or reconfigure one fixed ChatGPT project for image generation, save its URL locally, and set default character/style consistency profiles. Reuses the saved project unless force_new is true.Input schema{
"type": "object",
"properties": {
"project_name": {
"type": "string",
"minLength": 1,
"maxLength": 80
},
"project_url": {
"type": "string",
"format": "uri",
"description": "Optional existing ChatGPT project home URL to adopt"
},
"character_profile": {
"type": "string",
"maxLength": 4000,
"description": "Default reusable character identity description"
},
"style_profile": {
"type": "string",
"maxLength": 4000,
"description": "Default reusable visual style description"
},
"force_new": {
"type": "boolean",
"description": "Create another project instead of reusing the configured URL"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |