npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

appsheet-mcp-server

v1.0.2

Published

Open-source MCP server for Google AppSheet — CRUD, schema discovery, and automation tools

Readme

AppSheet MCP Server

npm version Smithery License: MIT

Open-source MCP server for Google AppSheet — lets any AI assistant query, write, and automate your AppSheet apps through natural language.

Setup

  1. Open your app → Settings → Integrations → Enable API
  2. Copy your App Id and Access Key

Where to find App Id and Access Key

  1. 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