Seatable Mcp

by brianmoney

289 downloads
Not rated
GitHub

About

A comprehensive Model Context Protocol (MCP) server for SeaTable that exposes end‑to‑end database capabilities (schema introspection, CRUD, querying, linking, select option management, and file attachment stubs) through 18+ rigorously defined tools. You can run it:

Details

Author
brianmoney
Downloads
289
Categories
Database, Other, Automation

- Complete CRUD operations for rows and tables
- Advanced querying with DSL and raw SQL support
- Schema management (create, modify, delete tables/columns)
- Safe SQL execution with parameterized queries
- Real‑time health monitoring with connection status and latency
- Mock mode for offline testing without a live SeaTable

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Seatable Mcp
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install and run with npx -y @aspereo/mcp-seatable, then configure environment variables (SEATABLE_SERVER_URL, SEATABLE_API_TOKEN, SEATABLE_BASE_UUID). Integrate with MCP clients (Claude Desktop, Cursor, VS Code) by adding the server configuration to their settings. For local SSE development, set PORT=3001 and use the --sse flag. For Cloudflare Workers, clone the repo, run npm install and npx wrangler deploy.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "seatable mcp": {
            "seatable": {
                "command": "npx",
                "args": [
                    "-y",
                    "@aspereo/mcp-seatable"
                ],
                "env": {
                    "SEATABLE_SERVER_URL": "https://your-seatable-server.com",
                    "SEATABLE_API_TOKEN": "your-api-token",
                    "SEATABLE_BASE_UUID": "your-base-uuid"
                }
            }
        }
    }
}

McpServers

{
    "seatable": {
        "command": "npx",
        "args": [
            "-y",
            "@aspereo/mcp-seatable"
        ],
        "env": {
            "SEATABLE_SERVER_URL": "https://your-seatable-server.com",
            "SEATABLE_API_TOKEN": "your-api-token",
            "SEATABLE_BASE_UUID": "your-base-uuid"
        }
    }
}

mcp-seatable

A comprehensive Model Context Protocol (MCP) server for SeaTable that exposes end‑to‑end database capabilities (schema introspection, CRUD, querying, linking, select option management, and file attachment stubs) through 18+ rigorously defined tools. You can run it:

- As a local CLI (stdio) MCP server
- As an HTTP SSE server for local or remote IDEs
- As a globally distributed Cloudflare Worker (dual transport: /sse + /mcp)

Version 1.0.3 introduces fully explicit Zod schemas for every tool in the Cloudflare Worker path, eliminating earlier adapter ambiguity and ensuring reliable argument delivery across hosts.

> NOTE: As of v1.0.3 the Cloudflare Worker deployment exposes all tools without authentication. Do NOT deploy to a public URL containing sensitive data until OAuth + scoped permissions (planned) are enabled. You can mitigate risk by keeping the Worker URL private or restricting via Cloudflare Access.

🚀 Deployment Options

Option 1: Cloudflare Workers (Recommended for Production)

Deploy your own scalable MCP server on Cloudflare Workers with session persistence and dual transport support:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.