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

teable-mcp

v1.0.1

Published

Full-CRUD MCP server for Teable — zero build step, npx-ready

Readme

teable-mcp

Full-CRUD MCP server for Teable — zero build step, npx-ready.

Quick Start

1. Get your API token

Teable → Settings → Personal Access Token → Create token

Enable scopes: Read space, base, table, record, view, field · Write record, field, table, view

2. Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "teable": {
      "command": "npx",
      "args": ["-y", "teable-mcp"],
      "env": {
        "TEABLE_API_KEY": "your_token_here"
      }
    }
  }
}

Restart Claude Desktop. Done.

Self-hosted Teable

Add TEABLE_BASE_URL to point at your instance:

{
  "mcpServers": {
    "teable": {
      "command": "npx",
      "args": ["-y", "teable-mcp"],
      "env": {
        "TEABLE_API_KEY": "your_token_here",
        "TEABLE_BASE_URL": "https://your-teable.example.com/api"
      }
    }
  }
}

Why this over the community server?

| Feature | ltphat2204 | teable-mcp | |---|---|---| | Setup | Clone → build → configure path | npx teable-mcp | | Create records | ❌ | ✅ | | Update records | ❌ | ✅ | | Delete records | ❌ | ✅ | | Batch operations | ❌ | ✅ (up to 2000 records) | | Schema management | ❌ | ✅ | | Table management | ❌ | ✅ | | View management | ❌ | ✅ | | Published on npm | ❌ | ✅ |


Tools (23 total)

Discovery

| Tool | Description | |---|---| | list_spaces | All spaces the API key can access | | list_bases | All bases in a space | | list_tables | All tables in a base | | get_table_schema | Full field definitions — call before writing records | | list_views | All views in a table |

Records — Read

| Tool | Description | |---|---| | get_records | Fetch with filter, sort, search, pagination, field projection | | get_record | Single record by ID | | get_record_history | Full audit trail for a record |

Records — Write

| Tool | Description | |---|---| | create_records | Create 1–2000 records, with typecast | | update_record | PATCH a single record (only changed fields) | | update_records | Batch update multiple records | | delete_records | Delete one or more records by ID |

Schema Management

| Tool | Description | |---|---| | create_field | Add a field (text, number, select, date, checkbox, formula…) | | update_field | Rename or update field options | | delete_field | Remove a field permanently |

Base Management

| Tool | Description | |---|---| | create_base | Create a new base in a space | | delete_base | Delete a base permanently |

Table Management

| Tool | Description | |---|---| | create_table | Create a new table, optionally with initial fields | | update_table | Rename or update a table | | delete_table | Move table to trash (recoverable) |

View Management

| Tool | Description | |---|---| | create_view | Create grid, gallery, kanban, calendar, gantt, or form view | | update_view | Rename or update a view | | delete_view | Remove a view |


Environment Variables

| Variable | Required | Default | Description | |---|---|---|---| | TEABLE_API_KEY | ✅ | — | Personal Access Token from Teable settings | | TEABLE_BASE_URL | ❌ | https://app.teable.io/api | Override for self-hosted instances |


Debugging with MCP Inspector

TEABLE_API_KEY=your_token npx @modelcontextprotocol/inspector node dist/index.js

Local Development

git clone https://github.com/imperol3/teable-mcp
cd teable-mcp
npm install
npm run build

TEABLE_API_KEY=your_token node dist/index.js

License

MIT