{"id":29563437,"url":"https://github.com/apitable/aitable-mcp-server","last_synced_at":"2025-07-24T02:38:54.470Z","repository":{"id":302387331,"uuid":"1011843584","full_name":"apitable/aitable-mcp-server","owner":"apitable","description":"AITable.ai Model Context Protocol Server enables AI agents to connect and work with AITable datasheets.","archived":false,"fork":false,"pushed_at":"2025-07-04T01:58:05.000Z","size":55,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-18T20:23:03.933Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apitable.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-01T12:22:05.000Z","updated_at":"2025-07-14T11:12:10.000Z","dependencies_parsed_at":"2025-07-02T06:24:56.252Z","dependency_job_id":"82494c6f-9c2c-4bff-a4d8-2b8b0d9c71a5","html_url":"https://github.com/apitable/aitable-mcp-server","commit_stats":null,"previous_names":["apitable/aitable-mcp-server"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/apitable/aitable-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apitable%2Faitable-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apitable%2Faitable-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apitable%2Faitable-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apitable%2Faitable-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apitable","download_url":"https://codeload.github.com/apitable/aitable-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apitable%2Faitable-mcp-server/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266785556,"owners_count":23983830,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-18T18:02:08.120Z","updated_at":"2025-07-24T02:38:54.458Z","avatar_url":"https://github.com/apitable.png","language":"TypeScript","readme":"# AITable MCP Server\n\nA Model Context Protocol server that provides read and write access to [AITable.ai](https://aitable.ai). This server enables LLMs to list spaces, search nodes, list records, create records and upload attachments in AITable.ai.\n\n\u003ca href=\"https://glama.ai/mcp/servers/@apitable/aitable-mcp-server\"\u003e\n  \u003cimg width=\"380\" height=\"200\" src=\"https://glama.ai/mcp/servers/@apitable/aitable-mcp-server/badge\" alt=\"AITable Server MCP server\" /\u003e\n\u003c/a\u003e\n\n## Tools\n\n| Tool Name                 | Availabe | Description                                                                                                   |\n| ------------------------- | -------- | ------------------------------------------------------------------------------------------------------------- |\n| list_spaces               | ✅        | Fetches all workspaces that the currently authenticated user has permission to access.                       |\n| search_nodes              | ✅        | Retrieve nodes based on specific types, permissions, and queries.                                            |\n| list_records               | ✅        | Read the records from a specified database with support for pagination, field filtering, and sorting options. |\n| get_fields_schema         | ✅        | Returns the JSON schema of all fields within the specified database                                           |\n| create_record             | ✅        | Create a new record in the database.                                                                          |\n| upload_attachment_via_url | ✅        | Upload an attachment to the AITable server using its web URL.                                                 |\n| update_record             | ❌        | TODO                                                                                                          |\n\n## Environment Variables\n\n- `AITABLE_API_KEY`: Your AITable personal access token.\n- `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).\n\n## Usage\n\nYou can use this server in MCP client such as [Claude Desktop](https://claude.ai/download), [CherryStudio](https://www.cherry-ai.com/), etc.\n\n**Claude Desktop**\nIn the case of Claude Desktop, you need to add the following configuration information to the \"mcpServers\" section of the `claude_desktop_config.json` file:\n\nFor Linux, MacOS:\n\n```json\n{\n  \"mcpServers\": {\n    \"aitable\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"/ABSOLUTE/PATH/TO/PARENT/FOLDER/aitable-mcp-server\"\n      ],\n      \"env\": {\n        \"AITABLE_API_KEY\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}\n```\n\nFor Windows:\n\n```json\n{\n  \"mcpServers\": {\n    \"aitable\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"D:\\\\ABSOLUTE\\\\PATH\\\\TO\\\\PARENT\\\\FOLDER\\\\aitable-mcp-server\"\n      ],\n      \"env\": {\n        \"AITABLE_API_KEY\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}\n```\n\nReplace `YOUR_API_KEY` with your AITable personal access token and `/ABSOLUTE/PATH/TO/PARENT/FOLDER/aitable-mcp-server` with the absolute path to the parent folder of this repository.\n\n**CherryStudio**\nIf you are using the CherryStudio as MCP client and Windows system, your configuration should look like this:\n\n```json\n{\n  \"mcpServers\": {\n    \"aitable\": {\n      \"command\": \"cmd\",\n      \"args\": [\n        \"/c\",\n        \"npx\",\n        \"-y\",\n        \"D:\\\\ABSOLUTE\\\\PATH\\\\TO\\\\PARENT\\\\FOLDER\\\\aitable-mcp-server\"\n      ],\n      \"env\": {\n        \"AITABLE_API_KEY\": \"YOUR_API_KEY\"\n      }\n    }\n  }\n}\n```\n\n## Debug\n\nThe [MCP inspector](https://github.com/modelcontextprotocol/inspector) is a developer tool for testing and debugging MCP servers.\n\nTo 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:\n\n```bash\nnpx @modelcontextprotocol/inspector -e AITABLE_API_KEY={YOUR_API_KEY} node build/index.js\n```\n\nThe other way is to clone the MCP inspector repo and connect the AITable MCP server in the inspector interface.\n\n```bash\ncd path/to/inspector/\nnpm start -- -e AITABLE_API_KEY={YOUR_API_KEY}\n```","funding_links":[],"categories":["Data Platforms","🌐 Web Development"],"sub_categories":["How to Submit"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapitable%2Faitable-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapitable%2Faitable-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapitable%2Faitable-mcp-server/lists"}