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

@ace-grid/mcp

v1.0.8

Published

Model Context Protocol server for Ace Grid docs, API metadata, config validation, migration help, and framework examples.

Readme

@ace-grid/mcp

Ace Grid MCP is a local Model Context Protocol server for Ace Grid documentation, API metadata, config validation, migration help, and framework example generation.

It is designed for MCP-compatible AI coding tools such as Claude Desktop, Cursor, Codex, and other clients that can launch a stdio MCP server.

Install

npm install -g @ace-grid/mcp

You can also run it without a global install:

npx @ace-grid/mcp

MCP client configuration

{
  "mcpServers": {
    "ace-grid": {
      "command": "npx",
      "args": ["@ace-grid/mcp"]
    }
  }
}

For local development from this repository:

{
  "mcpServers": {
    "ace-grid": {
      "command": "node",
      "args": ["/absolute/path/to/ace-grid-mcp/dist/index.js"]
    }
  }
}

Local-first behavior

Documentation, API search, config validation, implementation planning, and example generation use bundled metadata and run locally. No Ace Grid account or Portal token is required.

Tools

  • ace_grid_search_docs: search bundled docs, guides, API metadata, and feature groups.
  • ace_grid_search_api: search generated Ace Grid API metadata.
  • ace_grid_search_doc_pages: search written docs page content.
  • ace_grid_list_doc_pages: list bundled docs pages.
  • ace_grid_get_doc_page: return a docs page by slug or path.
  • ace_grid_list_feature_groups: list feature groups and prop counts.
  • ace_grid_get_prop: inspect a prop path such as layout.height.
  • ace_grid_validate_config: report unknown and missing props in a config object.
  • ace_grid_plan_implementation: infer framework packages, required tier, matched features, docs, and props from a natural-language request.
  • ace_grid_generate_implementation: generate React, Angular, Vue, Svelte, or Web Components starter code.
  • ace_grid_generate_react_example: generate a React starter snippet for Core, Pro, or Enterprise.
  • ace_grid_list_examples: list bundled framework examples.
  • ace_grid_generate_framework_example: generate a bundled framework example.
  • ace_grid_license_setup: explain license config and public-key behavior.

Publishing checklist

Before publishing a new MCP version:

npm install
npm test
npm run build

Refresh bundled metadata in data/ whenever Ace Grid docs, API snapshots, feature groups, examples, or portal-generated metadata change.

License

MIT. See the package license for details.