Get the FREE Ultimate OpenClaw Setup Guide →

teable

an mcp server to interact with teable's database

Installation
Run this command in your terminal to add the MCP server to Claude Code.
Run in terminal:
Command
claude mcp add --transport stdio mounta11n-teable-mcp-server node build/index.js \
  --env NODE_ENV="production"

How to use

This MCP server, teable, is implemented in TypeScript and is built to run as a Node.js process. The repository uses a TypeScript development workflow and compiles to JavaScript at build time. After building, the MCP server starts from the generated build/index.js entry point. To run, first install dependencies, compile, and then execute the built server file. The server is intended to expose the standard MCP endpoints and tooling that Mounta11n's MCP ecosystem expects, allowing you to manage and respond to MCP requests within your environment.

How to install

Prerequisites:

  • Node.js (recommended latest LTS)
  • npm (comes with Node.js)

Install dependencies and build:

npm install --save-dev typescript @types/node
npm install --save-dev ts-node

Compile TypeScript to JavaScript:

npm run build

Run the MCP server (uses the compiled entry point at build/index.js):

node build/index.js

If you need to customize environment variables, you can set them before starting the server, for example:

export NODE_ENV=production
node build/index.js

Additional notes

Notes:

  • Ensure the build step completes successfully before running the server.
  • The server entry point is build/index.js after the TypeScript compilation.
  • If you modify TypeScript sources, re-run the build step to reflect changes.
  • Typical environment variables (if used by the MCP framework) can be added via NODE_ENV or any custom vars your deployment requires.

Common issues:

  • Build failures due to TypeScript type errors: review compile output and fix type errors in the src files.
  • Missing dependencies: ensure npm install completes without errors before running build.

Related MCP Servers

Sponsor this space

Reach thousands of developers