Stop tracking .mcp.json; it carries a real API key

.mcp.json needs NOVELLY_API_KEY to match the API's Auth:ServiceApiKey
user secret, so it can't be a checked-in file — gitignore it and keep
.mcp.json.example (with the key blanked out) as the template. README
walks through copying the example and setting the matching user secret.
This commit is contained in:
James Wampler
2026-08-17 18:39:56 -07:00
parent c879d9bfce
commit eb1efcf9f8
4 changed files with 13 additions and 16 deletions
+2 -1
View File
@@ -3,7 +3,8 @@
"novelly": {
"command": "./mcp-server/Novelly.Mcp",
"env": {
"NOVELLY_API_URL": "http://localhost:5080"
"NOVELLY_API_URL": "http://localhost:5080",
"NOVELLY_API_KEY": "<matches the API's Auth:ServiceApiKey user secret>"
}
}
}