Skip to content

Commit 1d8fb10

Browse files
authored
Merge pull request #2 from rshah2020/main
Fix Cursor plugin component discovery
2 parents 7b719d7 + 189d683 commit 1d8fb10

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

.cursor-plugin/marketplace.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
},
77
"metadata": {
88
"description": "Cursor plugins for deploying, debugging, and monitoring applications on Render",
9-
"version": "0.1.0",
10-
"pluginRoot": "plugins"
9+
"version": "0.1.0"
1110
},
1211
"plugins": [
1312
{

plugins/render/.cursor-plugin/plugin.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,11 @@
99
},
1010
"license": "MIT",
1111
"keywords": ["render", "deploy", "cloud", "blueprint", "mcp", "monitoring", "debugging"],
12-
"logo": "assets/logo.svg"
12+
"logo": "assets/logo.svg",
13+
"skills": "skills",
14+
"rules": "rules",
15+
"agents": "agents",
16+
"commands": "commands",
17+
"hooks": "hooks/hooks.json",
18+
"mcpServers": ".mcp.json"
1319
}

plugins/render/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Cursor plugin for deploying, debugging, and monitoring applications on [Render](
88
- `skills/`: Deploy, debug, and monitor skills (synced from [render-oss/skills](https://github.com/render-oss/skills))
99
- `agents/`: Render deployment assistant
1010
- `commands/`: Deploy to Render and check service status
11-
- `mcp.json`: Render MCP server configuration
11+
- `.mcp.json`: Render MCP server configuration
1212
- `hooks/`: Validates render.yaml after edits
1313

1414
## Skills sync

scripts/validate-template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ async function main() {
349349
addWarning(`${entry.name}: no hooks/hooks.json file found (only needed when using hooks).`);
350350
}
351351

352-
const mcpPath = path.join(pluginDir, "mcp.json");
352+
const mcpPath = path.join(pluginDir, ".mcp.json");
353353
if (!(await pathExists(mcpPath))) {
354354
addWarning(`${entry.name}: no mcp.json file found (only needed when using MCP servers).`);
355355
}

0 commit comments

Comments
 (0)