appsheet-mcp-server
v1.0.2
Published
Open-source MCP server for Google AppSheet — CRUD, schema discovery, and automation tools
Maintainers
Readme
AppSheet MCP Server
Open-source MCP server for Google AppSheet — lets any AI assistant query, write, and automate your AppSheet apps through natural language.
Setup
- Open your app → Settings → Integrations → Enable API
- Copy your App Id and Access Key

- Add to your AI assistant's MCP config:
{
"mcpServers": {
"appsheet": {
"command": "npx",
"args": ["-y", "appsheet-mcp-server"],
"env": {
"APPSHEET_APP_ID": "your-app-id",
"APPSHEET_API_KEY": "V2-your-access-key"
}
}
}
}Tools
| Tool | Description |
|------|-------------|
| appsheet_find_rows | Query rows with optional filter |
| appsheet_add_rows | Add rows |
| appsheet_update_rows | Update rows by key |
| appsheet_delete_rows | Delete rows by key |
| appsheet_list_tables | List tables (live discovery) |
| appsheet_describe_table | Infer columns from sample data |
| appsheet_run_action | Execute a custom action |
| appsheet_run_workflow | Trigger an automation/bot |
| appsheet_list_apps | List configured apps |
| appsheet_get_app_info | App config summary |
Examples
1. "What tables do I have?" 2. "Show active customers" 3. "Add a row to Products" 4. "Count pending shipments" 5. "Update status to Delivered" 6. "Delete cancelled orders" 7. "Run Send Invoice on order #456" 8. "Describe the Orders table"
Web App
No terminal? Use the browser-based AppSheet Chat — same tools, built-in chat UI, supports Gemini/OpenAI/Claude.
License
MIT © Islom Ilkhomov
