MCP Server
Connect NocoDB to Large Language Models (LLMs) via the Model Context Protocol (MCP).
The Model Context Protocol (MCP) Server lets you connect NocoDB with LLMs that support MCP, such as Claude, Cursor, Windsurf, or Codex. With this integration, LLMs can work directly with your NocoDB base: query and edit records and, on NocoDB Cloud and licensed self-hosted deployments, manage tables, fields, views, workflows, interfaces, permissions, and more.
Available tools
Every edition exposes the record tools. An MCP client can list tables and read their schema, query, count, and aggregate records, read attachments, and create, update, and delete records.
| Action | Purpose | Sample Prompt |
|---|---|---|
| Create | Add new records | Create a task named 'Review Documentation' |
| Read | Look up information | Show me all projects with deadlines this week |
| Update | Change existing data | Mark the status of Project X as completed & re-assign to John |
| Delete | Remove records | Remove all tasks assigned to John |
On NocoDB Cloud and licensed self-hosted deployments, the server also exposes tools for the rest of the workspace. Each tool wraps the same service as the matching REST API, so validation, permissions, and audit behave identically.
| Area | What an MCP client can do |
|---|---|
| Tables and fields | Create, update, and delete tables and fields; add or remove select options |
| Views, filters, and sorts | Create and configure views, replace their filters, and manage sorts |
| Scripts | List, read, create, update, and delete scripts |
| Dashboards | Manage dashboards and widgets, and read widget data |
| Webhooks and comments | Manage webhooks; list, post, resolve, and delete comments |
| Interfaces | Create and configure interface pages |
| Workflows | Read and write workflow drafts, add nodes, and test nodes |
| Permissions | Set table and field permissions and Record-Level Security policies |
| Documents | Create and edit pages, patch Markdown, and manage share links |
| Data import and export | Export a table or view to CSV and import CSV into a table |
| Duplicates | Duplicate tables, fields, views, and bases, and poll job status |
| Row colouring | Manage record colour conditions and rules |
| Folders and members | Manage base, view, and workflow folders; list base members and shared views |
Desktop LLM Clients
Each MCP endpoint in NocoDB provides a secure URL that can be linked to an MCP-compatible client. Once configured, the LLM can execute database operations in your workspace through natural language prompts, without writing SQL or scripts.
Server Configuration (NocoDB)
- Click on the Overview button in the left sidebar.
- Select the Settings tab.
- Select the Model Context Protocol
- Click on the New MCP Endpoint to create a new MCP config JSON for your base.
- Provide a name for the MCP endpoint
- Click Create to generate the MCP Config JSON.
- Copy the generated JSON configuration. This will be used in your LLM client configuration.


Client Configuration
Claude
- Open Claude Desktop Preferences (
⌘+,). - Under Develop, click Edit Config.
- Insert the JSON block copied here as
claude_desktop_config.json. - Save the file and restart Claude Desktop.
Cursor
- Go to Cursor Settings (
⇧+⌘+J). - Open the MCP tab and select Add Custom MCP.
- Paste the JSON block copied here. Save.

Windsurf
- Open Windsurf Settings (
⌘+,). - In the Cascade section >
Plugins (MCP Server)> Click Manage Plugins - Paste the JSON block copied here. Save.


AntiGravity
- Click the three dots in the top right of the agent window and select MCP Servers.
- Click Manage MCP Servers.
- Click View raw config.
- Paste the JSON block copied here into the file that opens. Save.
Codex
Codex CLI connects to the MCP endpoint over HTTP directly, so it needs no mcp-remote bridge and takes a TOML configuration instead of the shared JSON block.
- Open
~/.codex/config.toml, creating it if it does not exist. - Add the TOML block shown in the Codex tab of the MCP endpoint dialog, using the URL and token generated here.
- Run
codex mcp listto confirm the server is connected.
[mcp_servers.NocoDB_MCP]
url = "https://your-domain.com/mcp/<ncId>"
http_headers = { "xc-mcp-token" = "<ncToken>" }_, and - in the endpoint name: an endpoint named My Base MCP appears as [mcp_servers.My_Base_MCP].JSON Example
{
"mcpServers": {
"NocoDB MCP": {
"command": "npx",
"args": [
"mcp-remote",
"https://your-domain.com/mcp/<ncId>",
"--header",
"xc-mcp-token: <ncToken>"
]
}
}
}xc-mcp-token header can send the token in x-api-key instead. The MCP endpoint accepts either header.Web based LLM Clients (OAuth)
Connect NocoDB to web-based LLM applications using OAuth, enabling seamless database access directly from the browser without requiring desktop client setup. This approach grants granular permission controls and eliminates the need for manual JSON configuration.
Claude Web
OAuth-based integration allows Claude web users to access NocoDB databases through the connectors interface.
Setup Steps
- Click here to open Claude Web Settings in a new tab.
- Alternatively, navigate to Settings > Connectors from the Claude Web app.
- Click Add custom connector.

- In the "Add custom connector" dialog:
- Provide a connector name of your choice
- Enter the MCP endpoint URL:
https://app.nocodb.com/mcp - Click
Add
- NocoDB Connector will now be listed in "Disconnected" state. Click Connect to initiate the OAuth authorization flow (Opens in a new tab).

- Authorize Access
- You will be asked to log in to your NocoDB account (if not already logged in)
- Select the workspace and base you want to connect
- Confirm the permissions Claude will have
- Access the selected base
- Read / create / update / delete records in the selected base
- Act on your behalf within the selected resources
- Click Authorize to grant access

With this, the NocoDB connector will move to "Connected" state in Claude Web. You can now interact with your NocoDB data through Claude web application.
Configure Tool Permissions
By default, all tools are set to "Always ask permission" to ensure you have control over each operation Claude performs. You can modify these settings as needed.
Click here to open Claude Web Settings in a new tab. Click Configure on the NocoDB connector to manage tool permissions. Set each tool's permission level using the dropdown menu:
- Always ask permission — Your approval is required every time Claude uses this tool
- Allow unsupervised — Claude can use this tool without requesting approval

To retrieve Workspace & Base information that this connector has access to, use the "Get Base Info" tool.

Using NocoDB Tools in Claude Web
Once configured, you can interact with your NocoDB data conversationally. For example:
- "Show me all projects with deadlines this week"
- "Create a task named 'Review Documentation'"
- "Mark the status of Project X as completed and reassign to John"
- "Provide details of our top 3 sponsors"
Claude will execute these requests using the enabled NocoDB tools, reading from and writing to your database based on the permissions you've granted.

ChatGPT
OAuth-based integration enables OpenAI web users (ChatGPT) to securely connect with NocoDB databases through the MCP connector, directly from their browser environment. This provides the same granular access control and eliminates the need for manual configuration or desktop client setup.
Prerequisites
Enable Developer Mode in ChatGPT settings to allow custom connector additions.
- Open ChatGPT Settings in a new tab.
- Alternatively, click your Profile Icon → Settings → Settings → Apps & Connectors).
- Click Advanced Settings & enable Developer Mode.

Setup Steps
- Open ChatGPT Settings in a new tab.
- Alternatively, click your Profile Icon → Settings → Settings → Apps & Connectors).
- Click Create button in top right corner of the Connectors modal.
- In the "New connector" dialog:
- Provide a connector name of your choice. Optionally, add a description / icon.
- Enter the MCP Server URL:
https://app.nocodb.com/mcp - Check the box for I trust this application.
- Click
Create
- Authorize Access:
- Log in to your NocoDB account if prompted
- Select the workspace and base you want to connect
- Review and confirm the permissions being requested:
- Access to the selected base
- Read / create / update / delete records
- Act on your behalf within the selected resources
- Click Authorize
Once authorization completes, you will see a confirmation message in ChatGPT Web indicating the NocoDB connector is now connected.

https://app.nocodb.com with your NocoDB instance URL.Using NocoDB Tools in OpenAI Web
On the ChatGPT interface, start a new conversation and
- Click the + icon to open the "Tools" menu, enable
Developer Modeif not already enabled. - Click
Moreto find and select the NocoDB connector you created. Toggle to enable it.
Once configured, you can query or update your NocoDB data conversationally. For example:
- “List all open support tickets assigned to me”
- “Add a new contact named ‘Alice Chen’ to the CRM base”
- “Update the status of Order #2456 to ‘Shipped’”
- “Summarize total revenue by month from the Sales base”
ChatGPT executes these actions using the connected NocoDB tools according to the permissions granted.