HTFlow

CMS MCP Server

Standalone admin-only MCP server for HTFlow CMS. Connect AI tools to manage collections, fields, reusable single post templates, and posts.

Endpoints
/mcp — primary bearer-token MCP endpoint
/api/mcp — alias endpoint
/chatgpt/mcp — ChatGPT custom MCP app bridge
/claude/mcp — Claude custom connector bridge
ChatGPT Setup
MCP Server URL: https://cms-mcp.htflow.com/chatgpt/mcp
Authentication: OAuth
Registration method: Dynamic Client Registration (DCR)
Default scopes: mcp
During authorization, paste an admin HTFlow API token. Non-admin tokens are rejected before any CMS tools are exposed.
This bridge exposes a stricter ChatGPT-compatible tool set. Complex inputs use JSON string arguments such as fields_json and field_values_json.
Direct Bearer-Token Config
{
  "mcpServers": {
    "htflow-cms": {
      "url": "https://cms-mcp.htflow.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_ADMIN_TOKEN"
      }
    }
  }
}
Available Tools
list_collections
get_collection
create_collection
update_collection
delete_collection
list_fields
create_field
update_field
delete_field
create_collection_blueprint
update_collection_blueprint
list_single_post_templates
get_single_post_template
create_single_post_template
update_single_post_template
delete_single_post_template
list_posts
get_post
create_post
update_post
delete_post