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

auigrid-mcp-server

v0.1.1

Published

MCP server exposing AUIGrid API reference (props, columns, renderers, events) and samples for AI coding assistants

Readme

auigrid-mcp-server

An MCP server that gives AI coding assistants (Claude Code, Claude Desktop, Cursor, etc.) direct, searchable access to the AUIGrid API reference — grid options, columns, cell/edit/header renderers, events, instance methods, static utilities, and real sample code — so they can write correct AUIGrid code without guessing at prop names or hallucinating methods.

Data is built from AUIGrid's official documentation (auisoft.net) and its React/TSX type declarations, indexed ahead of time into a local JSON knowledge base the server searches at runtime.

Quick install

# Claude Code
claude mcp add auigrid -- npx -y auigrid-mcp-server

# Codex
codex mcp add auigrid -- npx -y auigrid-mcp-server

After registering, run /mcp in the session to confirm the server connected and its tools are visible.

Tools

| Tool | Source | Purpose | |---|---|---| | search_api / get_api_entry | .d.ts + Properties/Events docs | Grid options, Column fields, renderers, events (name, type, default, description, examples) | | search_methods / get_method | Methods doc | Instance methods called via ref, e.g. setGridData, insertRow, exportToCsv | | search_static_utils / get_static_util | StaticUtils doc | Namespace-level helpers, e.g. AUIGrid.formatDate(), AUIGrid.create() | | search_samples / get_sample / list_samples | Bundled sample code | Real working React/TSX examples (tree grid, custom editors, drag & drop, export, ...) | | ping | — | Health check |

Manual config

If you'd rather edit the client config directly instead of using the CLI above:

Claude Code / Claude Desktop (.mcp.json, JSON):

{
  "mcpServers": {
    "auigrid": {
      "command": "npx",
      "args": ["-y", "auigrid-mcp-server"]
    }
  }
}

Codex (~/.codex/config.toml, TOML):

[mcp_servers.auigrid]
command = "npx"
args = ["-y", "auigrid-mcp-server"]

Building from source

npm install
npm run build   # compiles TypeScript, then re-runs all indexers against vendor/
npm start        # runs the server on stdio

npm run build regenerates data/*.json from the vendored sources in vendor/ (AUIGrid's type declarations and the scraped auisoft.net doc pages). Re-run it after updating anything under vendor/.

License

MIT for the server code. AUIGrid itself is a commercial product of AUISoft Co., Ltd. — this project only republishes its publicly available documentation for the purpose of API lookup; it has no affiliation beyond that.