Labsco
apitable logo

AITable

โ˜… 12

from apitable

Provides read and write access to AITable.ai, a collaborative database and spreadsheet platform.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredNeeds API keys

AITable MCP Server

A Model Context Protocol server that provides read and write access to AITable.ai. This server enables LLMs to list spaces, search nodes, list records, create records and upload attachments in AITable.ai.

AITable Server MCP server

Tools

Tool NameAvailabeDescription
list_spacesโœ…Fetches all workspaces that the currently authenticated user has permission to access.
search_nodesโœ…Retrieve nodes based on specific types, permissions, and queries.
list_recordsโœ…Read the records from a specified database with support for pagination, field filtering, and sorting options.
get_fields_schemaโœ…Returns the JSON schema of all fields within the specified database
create_recordโœ…Create a new record in the database.
upload_attachment_via_urlโœ…Upload an attachment to the AITable server using its web URL.
update_recordโŒTODO

Environment Variables

  • AITABLE_API_KEY: Your AITable personal access token.
  • AITABLE_BASE_URL: The base URL of the AITable API. Defaults to https://aitable.ai/fusion. You can set it to {YOUR_CUSTOM_BASE_URL} if you are using the APITable(the open-source version of AITable).

Debug

The MCP inspector is a developer tool for testing and debugging MCP servers.

To inspect an MCP server implementation, there's no need to clone the MCP inspector repo. Instead, use npx. For example, AITable MCP server is built at dist/index.js. Arguments are passed directly to your server, while environment variables can be set using the -e flag:

npx @modelcontextprotocol/inspector -e AITABLE_API_KEY={YOUR_API_KEY} node build/index.js

The other way is to clone the MCP inspector repo and connect the AITable MCP server in the inspector interface.

cd path/to/inspector/
npm start -- -e AITABLE_API_KEY={YOUR_API_KEY}