MCP Support: Connect NocoDB to AI Agents
NocoDB now supports the Model Context Protocol for seamless AI agent integration.
The Model Context Protocol (MCP) is quickly becoming the standard way for AI agents to interact with external tools and data sources. Starting today, NocoDB ships with a built-in MCP server that exposes your tables, views, and records to any MCP-compatible AI client.
Why MCP Matters
AI agents are powerful, but they need structured access to your data to be useful. Without MCP, you'd need to build custom API integrations, handle authentication, parse responses, and manage schema changes. MCP standardizes all of this into a single protocol that any agent can speak.
{
"mcpServers": {
"nocodb": {
"command": "npx",
"args": ["-y", "nocodb-mcp-server"],
"env": {
"NOCODB_URL": "https://app.nocodb.com",
"NOCODB_API_TOKEN": "your-api-token"
}
}
}
}Once connected, the AI agent can browse your bases, query tables with filters and sorting, create and update records, and even trigger workflows. All with proper authentication and rate limiting built in.
What You Can Build
- AI assistants that can query your project management database
- Automated data entry from natural language instructions
- Smart search across all your NocoDB tables
- AI-powered reporting that pulls real-time data
MCP turns NocoDB into a natural extension of your AI workflow. Your agents can read and write data as naturally as a human team member would.
MCP support is available on all plans. Install the MCP server package and add it to your client's configuration to get started.