Cursor plugin

Bundle the Dashfy agent skill, project rules, and MCP server as a single Cursor plugin.

The Dashfy Cursor plugin bundles everything an AI agent needs to work in a Dashfy project: the agent skill, project rules, and the MCP server — in a single installable package. With it, Cursor can scaffold apps, search and install extensions, set up widgets and data sources, and create dashboards as code.

What's in the bundle

PartDescription
Agent skillPrinciples, CLI/registry/MCP/config references, and setup/layout/address rules.
Project rulesConventions activated for dashfy.json, dashfy.config.yml, and server files.
MCP serverThe dashfy mcp tools for discovering and installing extensions.

The manifest ties these together:

{
  "name": "dashfy",
  "displayName": "Dashfy",
  "skills": "./skills/",
  "rules": "./.cursor/rules/",
  "mcpServers": {
    "dashfy": {
      "command": "npx",
      "args": ["dashfy@latest", "mcp"]
    }
  }
}

MCP-only setup

If you only want the MCP tools (without the skill and rules), configure the server directly with the CLI:

pnpm dlx dashfy@latest mcp init --client cursor

This writes .cursor/mcp.json with the dashfy server entry. See the MCP server reference for the full list of tools and clients.

Loading Dashfy...