INDIVIDUAL MCP TOOL
foxform_update_form
Update an existing form's fields, including each screen's conditional logic (branching).
LIVE ENDPOINT
https://mcp.foxform.app/mcp
Connect to this endpoint to inspect the live schema for foxform_update_form and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.foxform-mcp-server]
url = "https://mcp.foxform.app/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"foxform-mcp-server": {
"type": "http",
"url": "https://mcp.foxform.app/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: foxform-mcp-server
Remote MCP URL: https://mcp.foxform.app/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"foxform-mcp-server": {
"url": "https://mcp.foxform.app/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"foxform-mcp-server": {
"type": "http",
"url": "https://mcp.foxform.app/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "foxform-mcp-server",
"transport": "streamable-http",
"url": "https://mcp.foxform.app/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
foxform_list_forms— List the forms owned by the authenticated FoxForm account, newest first.foxform_get_form— Fetch a single form by ID, including its full question list, per-screen conditional logic and settings.foxform_list_responses— List submitted responses for a form, newest first.foxform_get_response— Fetch one response by its ID (from foxform_list_responses).foxform_get_form_analytics— Aggregated analytics for a form: overview KPIs (total responses, form views, response rate, avg response time), the responses-over-time timeline, and per-question stats.foxform_export_responses— Export all responses for a form as CSV text (one row per response, columns = questions).foxform_create_form— Create a new form, including per-screen conditional logic.foxform_publish_form— Publish a form so it's live at its public URL and can accept responses.