Jotform MCP
A Model Context Protocol (MCP) server for Jotform. This integration exposes Jotform Forms and Submissions to any MCP-compatible client via a hosted endpoint. It follows the Model Context Protocol spec for interoperability.
The service is actively optimized based on real-world usage and more tools are coming soon.
https://mcp.jotform.com
Point any MCP-enabled client to this address to begin.
Ask your AI assistant to:
| Product | Deployment type | Support status |
|---|---|---|
| Jotform | Cloud (hosted endpoint) | ✅ Fully supported via https://mcp.jotform.com |
To get started with Gemini CLI, you can use the official Gemini CLI extension for Jotform.
To install the extension, run the following command in your terminal:
gemini extensions install https://github.com/jotform/mcp-serverOnce you have the extension installed, start Gemini CLI by running:
geminiThen, authenticate with your Jotform account by running the following command inside Gemini CLI:
/mcp auth jotform
This will open a browser window to complete the OAuth authentication process. After authenticating, all the Jotform tools will be available.
A few example prompts to try:
/jotform:create-form contact form with name, email, and message
/jotform:list-forms
/jotform:get-submissions 123456789Jotform MCP requires OAuth for every user on first connect. Bearer-token access is not supported.
Note: OAuth 2.0 is required for all connections.
No server install needed.
https://mcp.jotform.com# Install extension
gemini extensions install https://github.com/jotform/mcp-server
# Start and authenticate
gemini
/mcp auth jotformSettings → MCP Servers → Add:
{
"mcpServers": {
"jotform": {
"url": "https://mcp.jotform.com"
}
}
}Add to your configuration:
{
"mcpServers": {
"jotform": {
"url": "https://mcp.jotform.com"
}
}
}Command Palette → "MCP: Add Server" → paste URL → Authorize
No extra configuration is needed after approval.
Configuration options are minimal — only OAuth setup is required.
The server communicates over HTTPS using standard MCP client-server interactions.
list_forms - Get the list of your formscreate_form - Create a new formedit_form - Edit an existing formcreate_submission - Make a submission to an existing formget_submissions - Get all submissions of a formassign_form - Assign form to userThis MCP is actively maintained, and more tools will come soon.
Access control is managed via OAuth scopes. Only explicitly granted scopes are available to the client.
Rate limits (same per-user as the Jotform REST API):
| Plan | Requests per minute |
|---|---|
| Free | 60 |
| Enterprise | 600 |
If limits are exceeded, the server returns HTTP 429 with a Retry-After header.
Important: Ensure you complete the OAuth flow; bearer tokens are not accepted.
Follow GitHub discussions or contact the Jotform support team for early access opportunities and updates on the timeline.
MIT