惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
月光博客
月光博客
Jina AI
Jina AI
F
Fortinet All Blogs
博客园 - 聂微东
The Cloudflare Blog
美团技术团队
B
Blog RSS Feed
N
Netflix TechBlog - Medium
罗磊的独立博客
The GitHub Blog
The GitHub Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Using ChatGPT Custom Connectors With a Remote MCP Form Se...
Lovanaut · 2026-06-16 · via DEV Community

Lovanaut

ChatGPT connected to a remote MCP form server that creates a draft form and returns a preview URL.

ChatGPT can suggest form fields in seconds.

That is useful, but it still leaves a gap:

Ask ChatGPT for fields
Open a form builder
Create the form manually
Copy labels
Configure response emails
Preview
Fix issues
Publish

With a remote MCP server, ChatGPT can move one layer deeper. Instead of only describing the form, it can call tools that create and operate the form.

This post walks through a narrow version of that setup using FORMLOVA as the remote MCP form server. The goal is not to explain every FORMLOVA feature. The goal is to show the practical connection path: ChatGPT developer mode, a remote MCP URL, OAuth, a first draft form, and the safety boundaries you should keep in place.

OpenAI's current help content may call this area "developer mode", "MCP apps", "custom apps", or formerly "custom connectors". The naming can move. The underlying shape is the same: ChatGPT can connect to an external MCP server and call approved tools.

Reference:

What We Are Connecting

The server URL for FORMLOVA is:

https://formlova.com/api/mcp

It is a remote MCP server. You do not install a local package, run a process on your laptop, or paste a shared API key into a config file.

The connection flow is:

ChatGPT
  -> remote MCP server URL
  -> OAuth
  -> FORMLOVA tools
  -> draft form / preview / review / operations

OAuth matters because a form system is not a read-only documentation source. It can create forms, inspect submissions, configure emails, and eventually operate workflows. The server needs to know which FORMLOVA user is acting.

Prerequisites

You need:

Requirement Notes
ChatGPT developer mode / MCP app access Availability depends on plan and workspace settings.
A FORMLOVA account The free plan is enough for the first connection test.
A browser session OAuth redirects through the browser.
Remote MCP URL https://formlova.com/api/mcp

If you are in a workspace plan, an admin may need to allow developer mode or custom apps before you can create an MCP app.

Step 1: Create The App In ChatGPT

In ChatGPT settings, look for the area related to apps, connectors, or developer mode. The labels may differ by account type, but the fields you are looking for are roughly:

Name: FORMLOVA
Description: Create and operate forms from ChatGPT
MCP server URL: https://formlova.com/api/mcp
Authentication: OAuth

Use the exact domain:

https://formlova.com/api/mcp

Do not add a random server URL you found in a thread or snippet. MCP apps can expose tools that perform write actions. Treat the server URL like an application you are granting permission to operate.

Step 2: Complete OAuth

After creating the app, ChatGPT should send you through the FORMLOVA authorization flow.

The rough flow is:

ChatGPT settings
  -> create MCP app
  -> FORMLOVA login / consent
  -> return to ChatGPT
  -> app connected

If the connection appears successful but tools do not run, check whether the app is enabled in the specific chat. Connecting an MCP app in settings and selecting it in a conversation can be two separate steps.

Step 3: Create A Draft Form

Start with a low-risk draft. Do not begin by publishing or sending emails.

Example prompt:

Use FORMLOVA to create a draft registration form for an internal engineering meetup.
Ask for name, email, team, attendance type, dietary restrictions, and one question for the speaker.
Keep it unpublished and return the preview URL.

The expected result is:

draft form created
preview URL returned
no public publish action yet

This is the right first test because it proves that ChatGPT can call the remote MCP server without immediately creating public side effects.

A Better Test Prompt

The first prompt can be short, but a realistic prompt should include the workflow after submission.

Forms are rarely just fields. They are the beginning of an operational process.

Here is a better test prompt:

Use FORMLOVA to create a draft contact form for a B2B SaaS website.

Required fields:
- name
- work email
- company
- inquiry type
- message

Optional fields:
- company size
- current tool
- expected timeline

After submission, the team wants to route pricing inquiries faster, ignore obvious sales pitches, and send a confirmation email that sets a realistic response-time expectation.

Keep the form unpublished.
Return the preview URL.
After creating it, review the form for mobile input friction, unnecessary required fields, and response-management gaps.

This prompt gives the model three kinds of information:

field requirements
operational intent
safety boundary

The safety boundary matters. "Keep it unpublished" and "return the preview URL" make the first test observable without turning it into a production action.

How To Tell If The MCP App Actually Ran

A weak test is:

Create a contact form.

ChatGPT can answer that without using any tool. It can produce a nice Markdown list of fields and still never touch the remote MCP server.

For a real test, verify the artifacts:

Check Why it matters
Preview URL exists Proves a draft was created outside the chat
Form is unpublished Confirms the write action was bounded
Fields match the prompt Confirms the tool call used the requested schema
Mobile-specific review exists Confirms the model did more than generate labels
Follow-up operations are identified Confirms the form is treated as intake, not a static page

I also like asking the model to summarize what it did:

Summarize the FORMLOVA actions you took.
Include the preview URL, publish status, and any review findings.

That response is not the source of truth by itself. The preview URL and the server-side draft are the evidence. But the summary helps you catch when the model is pretending to operate while only writing advice.

Step 4: Ask For A Review Before Publishing

Once the draft exists, ask for a review pass:

Review this form before publishing.
Check whether it is clear on mobile, whether any required fields are unnecessary, and whether the confirmation message sets the right expectation.

For form software, this step matters more than the initial generation. AI-generated form fields are usually plausible. The operational mistakes come later: too many required fields, weak confirmation text, unclear response handling, missing status columns, or a form that is painful on mobile.

What The Review Should Catch

A useful form review should not only say "looks good."

It should catch issues like:

The phone field is optional, but the follow-up workflow assumes phone calls.
The inquiry type is free text, which makes routing harder.
The form asks for budget too early, increasing friction.
The confirmation message says "we will reply soon" but does not set a response-time expectation.
The form is long on mobile and should split contact details from request details.
The message field is required but has no guidance about what to include.

For a contact form, the review should connect form fields to response operations:

Form decision Operational consequence
Inquiry type as select Enables routing and filtering
Work email required Reduces low-quality consumer traffic
Timeline optional Helps prioritize without blocking submission
Confirmation message Sets expectations and reduces duplicate submissions
Sales-pitch filtering Keeps real inquiries visible

This is where MCP-backed form software becomes more useful than a static AI answer. The same conversation can move from field creation to response workflow decisions.

Step 5: Keep Write Actions Bounded

MCP gives ChatGPT a tool surface. That is powerful, but it should not remove product safety.

I would separate early usage into these tiers:

Tier Examples Risk
Read list forms, inspect draft, get preview Low
Draft write create unpublished form, edit labels Medium
Publish make a form public, change public copy Higher
External effects send emails, trigger reminders, export data Highest

For the first session, stay in the first two tiers. Create a draft, preview it, edit it, review it. Publish only after the generated result has been inspected.

This is also why a form MCP server should expose domain-level operations rather than one giant "do anything" endpoint. A tool named create_draft_form is easier to reason about than a generic mutate.

Troubleshooting

If ChatGPT does not call the server, try making the target app explicit:

Use the FORMLOVA MCP app to create this draft form.

If OAuth loops, check browser blockers, workspace permissions, and whether you are logged into the expected FORMLOVA account.

If the app connects but no tools appear, check whether developer mode is enabled for your account or workspace and whether the current chat has the app selected.

If the model tries to answer with a static checklist instead of operating the tool, ask for a concrete action:

Create the draft in FORMLOVA and return the preview URL.
Do not just suggest fields.

When This Pattern Is Worth Using

This setup is not necessary for every form.

If you only need a one-off internal poll, a static prompt and a simple form builder may be enough.

The remote MCP pattern becomes more valuable when the form has operational weight:

responses need triage
emails need different wording by answer
submissions have statuses
follow-up needs timing
spam or sales pitches need filtering
forms are revised repeatedly
multiple people inspect the same intake queue

In those cases, ChatGPT is not just generating a form. It is becoming the operating surface for the workflow around the form.

That is the real reason to connect a remote MCP form server.

What This Post Is Not

This is not a tutorial on building an MCP server from scratch. It is not a full Apps SDK UI guide. It also does not cover Claude, Cursor, or Gemini CLI setup.

The narrower point is that ChatGPT can be used as an operating surface for a remote form system when developer mode and MCP apps are available.

The full FORMLOVA guide covers the longer path: setup, OAuth, preview, publishing, response management, email operations, workflows, and safety boundaries.

Read the full FORMLOVA ChatGPT guide