diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json
index 065f1e3..2250848 100644
--- a/.claude-plugin/marketplace.json
+++ b/.claude-plugin/marketplace.json
@@ -64,7 +64,7 @@
"description": "A Model Context Protocol (MCP) server for Grafana providing access to dashboards, datasources, and querying capabilities",
"source": {
"source": "github",
- "repo": "amondnet/grafana-plugin"
+ "repo": "amondnet/mcp-grafana"
}
}
]
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 5932d9f..5c2f17f 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -3,8 +3,12 @@
+
+
+
+
\ No newline at end of file
diff --git a/CLAUDE.md b/CLAUDE.md
index deab78f..411cdc1 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -83,19 +83,19 @@ The marketplace website is built with:
cd apps/web
# Install dependencies
-npm install
+bun install
# Development server
-npm run dev
+bun run dev
# Build for production
-npm run build
+bun run build
# Preview production build
-npm run preview
+bun run preview
# Generate static site
-npm run generate
+bun run generate
```
### Plugin Development
@@ -134,10 +134,10 @@ Users can add this marketplace and install plugins:
```bash
# For plugins with tests
cd plugins/
-npm run test
+bun run test
# Type checking across plugins
-npm run typecheck
+bun run typecheck
```
## Key Files
diff --git a/apps/web/app/components/InstallModal.vue b/apps/web/app/components/InstallModal.vue
index d1992b1..f4cb8f9 100644
--- a/apps/web/app/components/InstallModal.vue
+++ b/apps/web/app/components/InstallModal.vue
@@ -1,6 +1,8 @@