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

@o-bots7160/elastic-dashboard-mcp

v0.1.5

Published

MCP server for creating and editing Elastic Dashboard layout JSON files

Readme

elastic-dashboard-mcp

An MCP (Model Context Protocol) server for creating and editing Elastic Dashboard layout JSON files. Designed for FRC teams to programmatically build competition dashboard layouts using AI assistants like GitHub Copilot.

Features

  • Full Elastic Dashboard schema support — all 35+ widget types with correct sizes, properties, and validation
  • Smart auto-layout — widgets are automatically positioned on the grid without overlaps
  • Tunable topic awareness — configure patterns to distinguish read-only vs. editable topics (AdvantageKit, custom tuning systems)
  • Batch operations — add multiple widgets at once with automatic grid placement
  • Layout validation — catch errors before loading in Elastic Dashboard
  • Color conversion — convert between hex and Elastic's decimal ARGB format

Installation

Install from npm:

npm install @o-bots7160/elastic-dashboard-mcp

Or build from source:

git clone https://github.com/o-bots7160/elastic_dashboard-mcp.git
cd elastic_dashboard-mcp
npm install && npm run build

Usage with VS Code / GitHub Copilot

Add to your .vscode/mcp.json:

{
  "servers": {
    "elastic-dashboard": {
      "command": "npx",
      "args": [
        "-y",
        "@o-bots7160/elastic-dashboard-mcp"
      ]
    }
  }
}

Available Tools

Read / Inspect

  • get_layout — Read a layout file and get a summary of tabs and widgets
  • get_tab — Get full details of a specific tab
  • validate_layout — Check a layout against schema rules
  • list_widget_types — List all available widget types with properties and sizes

Create

  • create_layout — Create a new empty layout file
  • add_tab — Add a tab to an existing layout
  • add_widget — Add a widget with auto-positioning
  • add_widgets_batch — Add multiple widgets at once

Modify

  • move_widget — Move a widget to a new grid position
  • resize_widget — Resize a widget
  • update_widget_properties — Change widget properties
  • rename_tab — Rename a tab

Delete

  • remove_widget — Remove a widget from a tab
  • remove_tab — Remove a tab

Reorganize

  • auto_layout — Rearrange all widgets into a clean grid
  • reorder_tabs — Change tab order

Configuration

  • get_config — View current configuration
  • set_config — Update tunable patterns, defaults, and NT4 settings

Utilities

  • convert_color — Convert between hex colors and Elastic's decimal ARGB format
  • suggest_widget — Get the best widget type for a given NT data type

Configuration

Create a .elastic-mcp-config.json in your project root:

{
  "tunable_topic_patterns": ["/Tuning/**"],
  "ignored_topic_patterns": ["/.metadata/**"],
  "defaults": {
    "show_submit_button": true,
    "period": 0.06,
    "graph_period": 0.033
  }
}

Development

npm run build        # Compile TypeScript
npm run dev          # Watch mode
npm test             # Run tests
npm run test:watch   # Watch tests