mcp-baserow-schema

mcp-baserow-schema

Enables automated schema management for Baserow, including creating, updating, and deleting tables and fields, with built-in 2FA TOTP authentication.

Category
Visit Server

README

mcp-baserow-schema

MCP server for Baserow that provides schema management with 2FA authentication (TOTP).

Built for workflows where schema changes (adding/removing/modifying fields and tables) must be automated — not manual. Pairs with Baserow's official MCP (data-only) for full coverage.

Why

Baserow's official MCP handles data CRUD but not schema changes. In 2026, plain password auth without2FA is not acceptable. This MCP solves both:

  • Schema operations: create/update/delete fields and tables via MCP tools
  • 2FA support: automatic TOTP-based authentication — no manual token management
  • Designed for agents: AI agents can modify table structure without human intervention

Authentication

Supports Baserow's two-step2FA flow:

  1. POST /api/user/token-auth/ → temporary2FA token
  2. POST /api/two-factor-auth/verify/ → JWT access token (with TOTP code)

JWT is auto-refreshed. Credentials are passed via environment variables — never hardcoded.

Tools (16)

Category Tool Description
Discovery list_databases List databases in a workspace
list_tables List tables in a database
Schema create_table Create a new table
delete_table Delete a table
list_fields List fields (columns) in a table
create_field Create a new field
update_field Update an existing field
delete_field Delete a field
Data list_rows List rows with pagination/search/sort
create_row Create a single row
update_row Update a single row
delete_row Delete a single row
batch_create_rows Create multiple rows (up to 200)
batch_update_rows Update multiple rows (up to 200)
batch_delete_rows Delete multiple rows (up to 200)
Auth auth_status Check authentication state

Setup

Prerequisites

  • Node.js ≥ 20
  • Baserow account with2FA enabled
  • Baserow TOTP secret (base32)

Install

git clone git@github.com:aficiomaquinas/mcp-baserow-schema.git
cd mcp-baserow-schema
npm install
npm run build

Configure

Set environment variables (or use a .env file):

BASEROW_API_URL=https://your-baserow-instance.com
BASEROW_USERNAME=you@example.com
BASEROW_PASSWORD=your_password
BASEROW_TOTP_SECRET=YOUR_BASE32_TOTP_SECRET

Hermes Agent

Add to ~/.hermes/profiles/<profile>/config.yaml:

mcp_servers:
  baserow-mcp:
    command: node
    args:
      - /path/to/mcp-baserow-schema/dist/index.js
    enabled: true
    env:
      BASEROW_API_URL: https://baserow.ttamayo.com
      BASEROW_USERNAME: you@example.com
      BASEROW_PASSWORD: your_password
      BASEROW_TOTP_SECRET: YOUR_BASE32_TOTP_SECRET

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "baserow-schema": {
      "command": "node",
      "args": ["/path/to/mcp-baserow-schema/dist/index.js"],
      "env": {
        "BASEROW_API_URL": "https://baserow.ttamayo.com",
        "BASEROW_USERNAME": "you@example.com",
        "BASEROW_PASSWORD": "your_password",
        "BASEROW_TOTP_SECRET": "YOUR_BASE32_TOTP_SECRET"
      }
    }
  }
}

Field Types

The create_field and update_field tools support all Baserow field types:

text, long_text, url, email, number, rating, boolean, date, last_modified, last_modified_by, created_on, created_by, duration, link_row, file, single_select, multiple_select, phone_number, formula, count, rollup, lookup, multiple_collaborators, uuid, autonumber, password, ai

Usage with Official Baserow MCP

Use both MCPs together:

  • Official Baserow MCP → data operations (optimized for row CRUD)
  • mcp-baserow-schema → schema operations (fields, tables, structure)

This separation keeps each tool focused and avoids conflicts.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured