Introducing the Model Context Protocol (MCP) Server: A seamless integration with Large Language Models.
We’ve integrated an MCP server directly into Baserow, enabling easy interaction with Large Language Models like Claude or Cursor that support the protocol.
The MCP server URL is compatible with any supported client, providing a unique endpoint that allows the LLM to perform actions in your workspace on your behalf.
The MCP server supports all standard CRUD operations through natural language prompts.
Operation | Description | Example Prompt |
---|---|---|
Create | Add new records | “Add a new task called ‘Review Documentation’” |
Read | Query existing data | “Find all projects due this week” |
Update | Modify records | “Change the status to ‘In Progress’” |
Delete | Remove records | “Delete completed tasks older than 30 days” |
Here are the detailed steps to set up an MCP server:
Three simple steps to get started with Claude Desktop and the Baserow MCP:
claude_desktop_config.json
Three simple steps to get started with Cursor and the Baserow MCP:
Two easy steps to set up MCP with Cascade in Windsurf:
mcp_config.json
. Add the JSON configuration{
"mcpServers": {
"Baserow MCP": {
"command": "npx",
"args": [
"mcp-remote",
"MCP URL"
]
}
}
}
Treat your MCP URL as securely as a password, since it grants full access to modify your Baserow data.
Security Note: Your MCP URL contains sensitive credentials. Never share it publicly or store it in an unsecured location.