teable
an mcp server to interact with teable's database
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
zen
Selfhosted notes app. Single golang binary, notes stored as markdown within SQLite, full-text search, very low resource usage
MCP -Deepseek_R1
A Model Context Protocol (MCP) server implementation connecting Claude Desktop with DeepSeek's language models (R1/V3)
mcp-fhir
A Model Context Protocol implementation for FHIR
mcp
Inkdrop Model Context Protocol Server
mcp-appium-gestures
This is a Model Context Protocol (MCP) server providing resources and tools for Appium mobile gestures using Actions API..
dubco -npm
The (Unofficial) dubco-mcp-server enables AI assistants to manage Dub.co short links via the Model Context Protocol. It provides three MCP tools: create_link for generating new short URLs, update_link for modifying existing links, and delete_link for removing short links.