Skip to content

Commit a830313

Browse files
Rohan ShahRohan Shah
authored andcommitted
Rename mcp.json to .mcp.json for Cursor plugin auto-discovery
The Cursor plugin spec requires the MCP config file to be named .mcp.json (with a leading dot) for automatic discovery. Without this, the MCP server configuration is silently ignored. Also updates the validator script and plugin README to match. Made-with: Cursor
1 parent c633e60 commit a830313

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

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)