# How to connect Fillout forms to Claude Cowork

```json
{
  "title": "How to connect Fillout forms to Claude Cowork",
  "toolkit": "Fillout forms",
  "toolkit_slug": "fillout_forms",
  "framework": "Claude Cowork",
  "framework_slug": "claude-cowork",
  "url": "https://composio.dev/toolkits/fillout_forms/framework/claude-cowork",
  "markdown_url": "https://composio.dev/toolkits/fillout_forms/framework/claude-cowork.md",
  "updated_at": "2026-05-12T10:11:24.601Z"
}
```

## Introduction

Cowork is Anthropic's AI agent for knowledge work. Think of it as Claude Code for everything else. It works autonomously with your computer, local files, and applications to accomplish complex tasks.
This guide walks you through the easiest and most secure way to connect your Fillout forms account to Cowork via Composio Connect, enabling it to list all your active Fillout forms, show details for your latest created form, invalidate API token for Fillout account, and more such actions on your behalf without compromising your account security.

## Also integrate Fillout forms with

- [OpenAI Agents SDK](https://composio.dev/toolkits/fillout_forms/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/fillout_forms/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/fillout_forms/framework/claude-code)
- [Codex](https://composio.dev/toolkits/fillout_forms/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/fillout_forms/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/fillout_forms/framework/hermes-agent)
- [CLI](https://composio.dev/toolkits/fillout_forms/framework/cli)
- [Google ADK](https://composio.dev/toolkits/fillout_forms/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/fillout_forms/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/fillout_forms/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/fillout_forms/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/fillout_forms/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/fillout_forms/framework/crew-ai)

## Connect Fillout forms to Claude Cowork

### Connecting Fillout forms to Claude Cowork
1. Open Customize
In Claude Desktop, click Customize in the left sidebar, then select Connectors and click the + icon at the top.
2. Add the Composio MCP server
Click Add custom connector and paste in the Composio MCP server URL:

```bash
https://connect.composio.dev/mcp
```

## What is Claude Cowork?

Claude Cowork is Anthropic's agent for general knowledge work. It can use your computer, files, and connected applications to complete longer-running tasks across your work tools.
With Composio Connect, Cowork can securely access apps like Fillout forms through MCP without you sharing account credentials directly with the agent.

## What is the Fillout forms MCP server, and what's possible with it?

The Fillout forms MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Fillout account. It provides structured and secure access to your forms and form management tools, so your agent can fetch form data, list all your forms, manage authorization, and help automate form workflows on your behalf.
- Comprehensive form listing: Instantly retrieve and display a list of all forms in your Fillout account, making it easy to review and manage your surveys and data collection tools.
- Seamless authorization management: Let your agent handle the OAuth authorization flow for securely connecting third-party applications to your Fillout account—no manual steps required.
- Token revocation and security: Instruct your agent to programmatically invalidate or revoke access tokens, ensuring that only trusted applications and users have access to your Fillout data.
- Automated workflow integration: Use your agent to connect Fillout forms with other apps or workflows, streamlining data collection and processing without manual intervention.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `FILLOUT_FORMS_AUTHORIZE_O_AUTH` | Authorize OAuth | Tool to initiate the OAuth authorization process for third-party applications. Use when you need to generate the URL to redirect your users to the Fillout consent page. |
| `FILLOUT_FORMS_CREATE_DATABASE` | Create Database | Tool to create a new Zite database instance with tables and fields. Use when you need to create a structured database in Fillout with custom tables and field definitions. Each database must have at least one table, and each table must have at least one field. |
| `FILLOUT_FORMS_CREATE_DATABASE_WEBHOOK` | Create Database Webhook | Tool to create a webhook subscription for a Fillout database. The webhook will receive HTTP POST notifications when subscribed events occur (e.g., record.created, record.updated, record.deleted). Use when you need to set up real-time notifications for database changes. Maximum 100 webhooks per database. |
| `FILLOUT_FORMS_CREATE_FIELD` | Create field | Tool to add a new field to an existing table with specified type, name, and configuration. Use when you need to extend a database table with additional columns. |
| `FILLOUT_FORMS_CREATE_RECORD` | Create record | Tool to create a new record in a Fillout table with the provided field data. Use when you need to add a new entry to a specific table in your Fillout database. The record parameter should be a dictionary where keys are field names (or field IDs) from your table schema, and values are the data to store in those fields. |
| `FILLOUT_FORMS_CREATE_TABLE` | Create table | Tool to add a new table with custom schema to an existing database. Use when you need to create a structured table in a Fillout database with specific field definitions. Each table must have at least one field. |
| `FILLOUT_FORMS_DELETE_DATABASE` | Delete database | Tool to permanently delete a database and all its data including tables, fields, views, and records. Use when you need to completely remove a database. Warning: This action cannot be undone. |
| `FILLOUT_FORMS_DELETE_DATABASE_WEBHOOK` | Delete database webhook | Tool to remove a webhook subscription from a Fillout database. Use when you need to delete an existing webhook from a specific database. |
| `FILLOUT_FORMS_DELETE_FIELD` | Delete field | Tool to permanently delete a field from a table. Use when you need to remove a field from a Fillout database table. Note: Cannot delete the primary field. |
| `FILLOUT_FORMS_DELETE_RECORD` | Delete record | Tool to permanently delete a record from a table in Fillout Database. Use when you need to remove a specific record. This action cannot be undone. |
| `FILLOUT_FORMS_DELETE_TABLE` | Delete table | Tool to permanently delete a table and all its data including fields, views, and records from a Fillout database. Use when you need to remove a table. This action cannot be undone. |
| `FILLOUT_FORMS_GET_DATABASE_BY_ID` | Get database by ID | Tool to retrieve detailed information about a specific database including all tables, fields, and views. Use when you need to get comprehensive database structure and metadata by database ID. |
| `FILLOUT_FORMS_GET_DATABASES` | Get databases | Tool to retrieve a list of all databases for your organization. Use when you need to list available databases after authenticating with Fillout. |
| `FILLOUT_FORMS_GET_FORMS` | Get forms | Tool to retrieve a list of all forms in your account. Use when you need to list your forms after authenticating with Fillout. |
| `FILLOUT_FORMS_GET_RECORD_BY_ID` | Get record by ID | Tool to retrieve a single record by its UUID with all field data. Use when you need to fetch detailed information for a specific record from a Fillout table. |
| `FILLOUT_FORMS_INVALIDATE_ACCESS_TOKEN` | Invalidate Access Token | Revokes an OAuth access token obtained from Fillout's OAuth authorization flow. Use this action when a user logs out, disconnects their account, or when you need to programmatically revoke a third-party app's access to Fillout data. Important notes: - This action is for OAuth tokens only, NOT for API keys - OAuth tokens are obtained via the OAuth flow (authorize -> token exchange) - The operation is idempotent: invalidating an already-invalidated token succeeds - After invalidation, the token can no longer be used for API requests Example: A user disconnects your app from Fillout - call this to revoke their access token. |
| `FILLOUT_FORMS_LIST_DATABASE_WEBHOOKS` | List database webhooks | Tool to retrieve all webhook subscriptions configured for a specific database. Use when you need to list, audit, or manage existing webhooks for a database. |
| `FILLOUT_FORMS_LIST_RECORDS` | List Records | Tool to retrieve records from a Fillout table with filtering, sorting, and pagination. Supports complex filter conditions using AND/OR logic and 14 operators (equals, contains, greater_than, in, is_empty, etc.). Use when you need to query table data with specific conditions or retrieve paginated results. |
| `FILLOUT_FORMS_REMOVE_FORM_WEBHOOK` | Remove form webhook | Tool to remove a webhook by its ID. Use when you need to delete an existing webhook from your Fillout account. |
| `FILLOUT_FORMS_UPDATE_FIELD` | Update field | Tool to modify field properties and configuration for an existing field in a Fillout database table. Use when you need to update field names or change field configuration settings. |
| `FILLOUT_FORMS_UPDATE_RECORD` | Update record | Tool to update specific fields of an existing record in a Fillout table. Use when you need to modify particular fields without affecting other fields in the record. Only the fields specified in the request will be updated. |
| `FILLOUT_FORMS_UPDATE_TABLE` | Update table | Tool to update table properties like name. Use when you need to modify table metadata such as renaming a table in a Fillout database. |

## Supported Triggers

None listed.

## Creating MCP Server - Stand-alone vs Composio SDK

The Fillout forms MCP server connects Claude Cowork to your Fillout forms account through Composio. Once connected, Cowork can use the available Fillout forms tools and triggers to complete tasks on your behalf.

## Complete Code

None listed.

## How to build Fillout forms MCP Agent with another framework

- [OpenAI Agents SDK](https://composio.dev/toolkits/fillout_forms/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/fillout_forms/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/fillout_forms/framework/claude-code)
- [Codex](https://composio.dev/toolkits/fillout_forms/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/fillout_forms/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/fillout_forms/framework/hermes-agent)
- [CLI](https://composio.dev/toolkits/fillout_forms/framework/cli)
- [Google ADK](https://composio.dev/toolkits/fillout_forms/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/fillout_forms/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/fillout_forms/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/fillout_forms/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/fillout_forms/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/fillout_forms/framework/crew-ai)

## Related Toolkits

- [Apilio](https://composio.dev/toolkits/apilio) - Apilio is a home automation platform that lets you connect and control smart devices from different brands. It helps you build flexible automations with complex conditions, schedules, and integrations.
- [Basin](https://composio.dev/toolkits/basin) - Basin is a no-code form backend for quickly setting up reliable contact forms. It lets you collect and manage form submissions without writing any server-side code.
- [Bouncer](https://composio.dev/toolkits/bouncer) - Bouncer is an email validation platform that verifies the authenticity of email addresses in real-time and batch. It helps boost deliverability and reduce bounce rates for your communications.
- [Conveyor](https://composio.dev/toolkits/conveyor) - Conveyor is a platform that automates security reviews with a Trust Center and AI-driven questionnaire automation. It streamlines compliance and vendor security processes for faster, hassle-free reviews.
- [Crowdin](https://composio.dev/toolkits/crowdin) - Crowdin is a localization management platform that streamlines translation workflows and collaboration. It helps teams centralize multilingual content, boost productivity, and automate translation processes.
- [Databox](https://composio.dev/toolkits/databox) - Databox is a business analytics platform that connects your data from any tool and device. It helps you track KPIs, build dashboards, and discover actionable insights.
- [Detrack](https://composio.dev/toolkits/detrack) - Detrack is a delivery management platform for real-time tracking and proof of delivery. It helps businesses automate notifications and keep customers updated every step of the way.
- [Dnsfilter](https://composio.dev/toolkits/dnsfilter) - Dnsfilter is a cloud-based DNS security and content filtering solution. It helps organizations block online threats and manage safe internet access with ease.
- [Faraday](https://composio.dev/toolkits/faraday) - Faraday lets you embed AI in workflows across your stack for smarter automation. It boosts your favorite tools with actionable intelligence and seamless integration.
- [Feathery](https://composio.dev/toolkits/feathery) - Feathery is an AI-powered platform for building dynamic data intake forms with advanced logic. It helps teams automate complex workflows and collect structured data with ease.
- [Formdesk](https://composio.dev/toolkits/formdesk) - Formdesk is an online form builder for creating and managing professional forms. It's perfect for collecting data, automating workflows, and integrating form submissions with your favorite services.
- [Formsite](https://composio.dev/toolkits/formsite) - Formsite lets you build online forms and surveys with drag-and-drop simplicity. Capture, manage, and integrate form responses securely for streamlined workflows.
- [Graphhopper](https://composio.dev/toolkits/graphhopper) - GraphHopper is an enterprise-grade Directions API for routing, optimization, and geocoding across multiple vehicle types. It enables fast, reliable route planning and logistics automation for businesses.
- [Hyperbrowser](https://composio.dev/toolkits/hyperbrowser) - Hyperbrowser is a next-generation platform for scalable browser automation. It empowers AI agents to interact with web apps, automate workflows, and handle browser sessions at scale.
- [La Growth Machine](https://composio.dev/toolkits/lagrowthmachine) - La Growth Machine automates multi-channel sales outreach and routine tasks for sales teams. Streamline your workflow and focus on closing more deals.
- [Leverly](https://composio.dev/toolkits/leverly) - Leverly is a workflow automation platform that connects and coordinates actions across your apps. It streamlines repetitive processes so your business runs smoother, faster, and with fewer manual steps.
- [Maintainx](https://composio.dev/toolkits/maintainx) - Maintainx is a cloud-based CMMS for centralizing maintenance data, communication, and workflows. It helps organizations streamline maintenance operations and improve team coordination.
- [Make](https://composio.dev/toolkits/make) - Make is an automation platform that connects your favorite apps and services. Build powerful, custom workflows without writing code.
- [Ntfy](https://composio.dev/toolkits/ntfy) - Ntfy is a notification service to send push messages to phones or desktops. Instantly deliver alerts and updates to users, devices, or teams.
- [Persona](https://composio.dev/toolkits/persona) - Persona offers identity infrastructure to automate user verification and compliance. It helps organizations securely verify users and reduce fraud risk.

## Frequently Asked Questions

### What are the differences in Tool Router MCP and Fillout forms MCP?

With a standalone Fillout forms MCP server, the agents and LLMs can only access a fixed set of Fillout forms tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Fillout forms and many other apps based on the task at hand, all through a single MCP endpoint.

### Can I use Tool Router MCP with Claude Cowork?

Yes, you can. Claude Cowork fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Fillout forms tools.

### Can I manage the permissions and scopes for Fillout forms while using Tool Router?

Yes, absolutely. You can configure which Fillout forms scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

### How safe is my data with Composio Tool Router?

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Fillout forms data and credentials are handled as safely as possible.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
