npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mrsneaker-nocodb-mcp

v1.0.0

Published

MCP server for NocoDB — connect Claude (and any MCP client) to your NocoDB database

Readme

nocodb-mcp

A Model Context Protocol (MCP) server for NocoDB. Connect Claude Desktop, Cursor, VS Code, or any MCP-compatible client directly to your NocoDB database.

Features

  • Full CRUD — list, get, create, update, delete records
  • Filtering & sorting — NocoDB where syntax with ~and/~or operators
  • Paginationlimit + offset support
  • Named table registry — use friendly names instead of table IDs
  • Raw API escape hatch — call any NocoDB endpoint directly
  • Zero config beyond env vars — works with any NocoDB instance

Tools

| Tool | Description | |------|-------------| | nocodb_list_tables | List registered tables from NOCODB_TABLES | | nocodb_list_records | List records with filtering, sorting, pagination | | nocodb_get_record | Get a single record by ID | | nocodb_create_records | Create one or more records | | nocodb_update_records | Update records (must include Id) | | nocodb_delete_records | Delete records by ID array | | nocodb_count_records | Count records with optional filter | | nocodb_get_table_fields | Get table schema / field definitions | | nocodb_bulk_upsert_records | Bulk upsert records | | nocodb_raw_api | Raw HTTP request to any NocoDB endpoint |

Quick Start

Via npx (no install)

NOCODB_BASE_URL=https://your-nocodb.com \
NOCODB_API_TOKEN=your_token \
npx nocodb-mcp

Claude Desktop config

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "nocodb": {
      "command": "npx",
      "args": ["nocodb-mcp"],
      "env": {
        "NOCODB_BASE_URL": "https://your-nocodb.example.com",
        "NOCODB_API_TOKEN": "your_api_token_here",
        "NOCODB_TABLES": "{\"customers\":\"tableId123\",\"orders\":\"tableId456\"}"
      }
    }
  }
}

Claude Code / VS Code MCP config

{
  "servers": {
    "nocodb": {
      "type": "stdio",
      "command": "npx",
      "args": ["nocodb-mcp"],
      "env": {
        "NOCODB_BASE_URL": "https://your-nocodb.example.com",
        "NOCODB_API_TOKEN": "your_api_token_here",
        "NOCODB_TABLES": "{\"customers\":\"tableId123\"}"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | NOCODB_BASE_URL | ✅ | Your NocoDB base URL, e.g. https://noco.example.com | | NOCODB_API_TOKEN | ✅ | API token from NocoDB → Team & Settings → API Tokens | | NOCODB_TABLES | ❌ | JSON map of {"tableName":"tableId"} for named access |

Usage Examples

List records with filter

Use nocodb_list_records with tableId "mrviuw1mt0i4b61", where "(Status,eq,Active)", limit 10

Create a record

Use nocodb_create_records with tableName "customers", records [{"Name":"Alice","Email":"[email protected]"}]

Update a record

Use nocodb_update_records with tableName "customers", records [{"Id":1,"Status":"Inactive"}]

Filter syntax

NocoDB uses a specific where clause format:

(field,op,value)~and(field2,op2,value2)

Operators: eq, neq, gt, ge, lt, le, like, nlike, is, isnot, in, btw, nbtw

Example: (Amount,gt,100)~and(Status,eq,Active)

Sort syntax

Comma-separated field names. Prefix - for descending:

-CreatedAt,Name

Development

git clone https://github.com/YOUR_USERNAME/nocodb-mcp
cd nocodb-mcp
npm install
cp .env.example .env  # fill in your values
npm run build
node dist/index.js

Publishing to npm

npm login
npm publish

License

MIT