Summary
The ACF 6.8 acf/register-custom-post-type ability currently exposes an input schema that cannot be loaded by ChatGPT's MCP client.
When the ability is exposed as an MCP tool, ChatGPT rejects the tool during tool discovery with:
Invalid MCP tool schema for tool 'wp_ability_acf_register_custom_post_type'
I traced the issue to the schema definition of the supports property in src/AI/Abilities/PostType.php.
Environment
- ACF PRO: 6.8.10
- WordPress: 7.1
- PHP: 8.3.33
- MCP adapter: Easy MCP AI 1.7.17
- Client: ChatGPT Custom MCP
- Date tested: 2026-09-15
Steps to reproduce
- Enable ACF AI abilities:
add_filter( 'acf/settings/enable_acf_ai', '__return_true' );
- Expose
acf/register-custom-post-type as an MCP tool.
- Connect the WordPress MCP server to ChatGPT.
- Refresh/discover MCP tools.
ChatGPT rejects the tool schema and the MCP tool refresh fails.
Suspected root cause
The current schema defines supports as an array without an items schema:
'supports' => array(
'type' => 'array',
'description' => 'Features the post type supports...',
'required' => false,
),
However, another array property in the same ability, taxonomies, correctly includes an items definition:
'taxonomies' => array(
'type' => 'array',
'description' => 'Array of taxonomy names...',
'items' => array(
'type' => 'string',
),
'required' => false,
),
Strict OpenAI-compatible tool-schema validators reject array schemas without an items definition.
This is particularly problematic for an ability specifically intended to make ACF interoperable with external AI/MCP clients.
There also appears to be a contract mismatch around supports: the description/runtime behavior indicates support for both indexed arrays and associative/object-style values, while the published schema declares only type: array.
Expected behavior
acf/register-custom-post-type should expose a tool schema that can be successfully discovered and loaded by major MCP clients, including ChatGPT/OpenAI-compatible clients.
Actual behavior
Tool discovery fails when this ability is enabled.
ChatGPT displays:
Invalid MCP tool schema for tool 'wp_ability_acf_register_custom_post_type'
Disabling only the acf/register-custom-post-type MCP tool allows tool discovery to continue.
Suggested fix
At minimum, define the item type for supports:
'supports' => array(
'type' => 'array',
'items' => array(
'type' => 'string',
),
'description' => 'Features the post type supports...',
'required' => false,
),
The documented/runtime support for associative/object-style supports values should also be reconciled with the published ability schema.
I would also suggest adding an automated schema compatibility/regression test for all ACF Abilities exposed through MCP, particularly against strict OpenAI-compatible tool-schema validation.
This class of issue is straightforward to catch automatically before release by validating every exposed ability schema and failing CI when an array schema required by a target client is missing its items definition.
Additional observation
The same area may deserve a broader schema audit rather than treating this as a single-property typo.
For example, other ACF AI/Abilities schemas should be checked for arrays without explicit item definitions and for mismatches between runtime-supported values and the machine-readable schema.
Reproduction evidence
I can provide a screenshot of ChatGPT failing MCP tool refresh with:
Invalid MCP tool schema for tool 'wp_ability_acf_register_custom_post_type'
Reported by Süha Karalar
https://www.suhakaralar.com

Summary
The ACF 6.8
acf/register-custom-post-typeability currently exposes an input schema that cannot be loaded by ChatGPT's MCP client.When the ability is exposed as an MCP tool, ChatGPT rejects the tool during tool discovery with:
I traced the issue to the schema definition of the
supportsproperty insrc/AI/Abilities/PostType.php.Environment
Steps to reproduce
acf/register-custom-post-typeas an MCP tool.ChatGPT rejects the tool schema and the MCP tool refresh fails.
Suspected root cause
The current schema defines
supportsas an array without anitemsschema:However, another array property in the same ability,
taxonomies, correctly includes anitemsdefinition:Strict OpenAI-compatible tool-schema validators reject array schemas without an
itemsdefinition.This is particularly problematic for an ability specifically intended to make ACF interoperable with external AI/MCP clients.
There also appears to be a contract mismatch around
supports: the description/runtime behavior indicates support for both indexed arrays and associative/object-style values, while the published schema declares onlytype: array.Expected behavior
acf/register-custom-post-typeshould expose a tool schema that can be successfully discovered and loaded by major MCP clients, including ChatGPT/OpenAI-compatible clients.Actual behavior
Tool discovery fails when this ability is enabled.
ChatGPT displays:
Disabling only the
acf/register-custom-post-typeMCP tool allows tool discovery to continue.Suggested fix
At minimum, define the item type for
supports:The documented/runtime support for associative/object-style
supportsvalues should also be reconciled with the published ability schema.I would also suggest adding an automated schema compatibility/regression test for all ACF Abilities exposed through MCP, particularly against strict OpenAI-compatible tool-schema validation.
This class of issue is straightforward to catch automatically before release by validating every exposed ability schema and failing CI when an array schema required by a target client is missing its
itemsdefinition.Additional observation
The same area may deserve a broader schema audit rather than treating this as a single-property typo.
For example, other ACF AI/Abilities schemas should be checked for arrays without explicit item definitions and for mismatches between runtime-supported values and the machine-readable schema.
Reproduction evidence
I can provide a screenshot of ChatGPT failing MCP tool refresh with:
Reported by Süha Karalar
https://www.suhakaralar.com