Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions database/mcp/chatgpt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ icon: "openai"
sidebarTitle: "Connect with ChatGPT"
---

<Warning>
ChatGPT only allows users to add Apps in their web application, not in desktop
apps. It also only works properly on Chrome and only with paid accounts. In
other browsers or with a free account, you may have issues where it appears to
successfully add the MCP connection but then the app doesn't appear in
settings and doesn't work.
</Warning>

<Steps>
<Step title="Visit ChatGPT in your browser">
Go to [chatgpt.com](https://chatgpt.com/)
Expand Down
4 changes: 4 additions & 0 deletions database/mcp/claude-code.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ sidebarTitle: "Connect with Claude Code"

Claude Code is a tool from Anthropic that accesses Claude through the terminal or an IDE extension.

<Warning>
Claude only supports MCP connections on their Pro and Max plans.
</Warning>

<Steps>
<Step title="Use the Claude command-line tools to add Zite MCP">
Run the following command with Claude's command-line interface:
Expand Down
13 changes: 13 additions & 0 deletions database/mcp/claude.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ icon: "plus"
sidebarTitle: "Connect with Claude"
---

<Warning>
Claude only supports MCP connections on their Pro and Max plans.
</Warning>

<Steps>
<Step title="Visit Claude in your browser">
Go to [claude.ai](https://claude.ai)
Expand Down Expand Up @@ -39,6 +43,15 @@ sidebarTitle: "Connect with Claude"
Click the "Authorize" button to complete your connection. This will send you back to Claude's settings page with the connector
fully set up.

</Step>
<Step title="Validate connection">
At this point you should be back in Claude's settings and you should see the Zite connector with a button available for
configuring it like this:

![claude-connected.png](/images/mcp/claude-connected.png)

If the button still says "Connect" you may need to click it again to complete the connection.

</Step>
<Step title="Optional: change default permissions">
Clicking the "Configure" button next to your connector gives you options for setting the default permission level for Zite MCP.
Expand Down
38 changes: 33 additions & 5 deletions database/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@
"example": [
{
"id": "cd6ff4eff7845d96",
"name": "Business Website Database"
"name": "Business Website Database",
"url": "https://build.fillout.com/database/cd6ff4eff7845d96"
},
{
"id": "2f95d3fcbc961f90",
"name": "Professional Business Website"
"name": "Professional Business Website",
"url": "https://build.fillout.com/database/2f95d3fcbc961f90"
}
]
}
Expand Down Expand Up @@ -951,9 +953,15 @@
"type": "string",
"description": "Name of the database",
"example": "Business Website Database"
},
"url": {
"type": "string",
"format": "uri",
"description": "URL to view this database in the app",
"example": "https://build.fillout.com/database/cd6ff4eff7845d96"
}
},
"required": ["id", "name"]
"required": ["id", "name", "url"]
},
"FieldType": {
"type": "string",
Expand Down Expand Up @@ -1016,9 +1024,15 @@
"workspaceId": {
"type": "string",
"description": "Workspace ID that owns this database"
},
"url": {
"type": "string",
"format": "uri",
"description": "URL to view this database in the app",
"example": "https://build.fillout.com/database/bad4b276-f604-47ad-86e5-d2ae4f60968f"
}
},
"required": ["id", "name", "tables", "createdAt", "updatedAt"]
"required": ["id", "name", "tables", "createdAt", "updatedAt", "url"]
},
"DatabaseWithTables": {
"$ref": "#/components/schemas/Database"
Expand Down Expand Up @@ -1055,9 +1069,23 @@
"$ref": "#/components/schemas/View"
},
"description": "List of views in the table"
},
"url": {
"type": "string",
"format": "uri",
"description": "URL to view this table in the app",
"example": "https://build.fillout.com/database/bad4b276-f604-47ad-86e5-d2ae4f60968f/tbl_abc123"
}
},
"required": ["id", "name", "order", "primaryFieldId", "fields", "views"]
"required": [
"id",
"name",
"order",
"primaryFieldId",
"fields",
"views",
"url"
]
},
"Field": {
"type": "object",
Expand Down
Binary file added images/mcp/claude-connected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/mcp/claude-permissions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.