cloudflare-mcp-smart-proxy 1.5.16 → 1.5.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudflare-mcp-smart-proxy",
3
- "version": "1.5.16",
3
+ "version": "1.5.17",
4
4
  "description": "Smart proxy for Cloudflare MCP - routes tools to cloud or local execution",
5
5
  "repository": {
6
6
  "type": "git",
@@ -61,12 +61,11 @@ export async function discoverProjectIdentity(workspaceRoot = process.cwd()) {
61
61
  ]);
62
62
  const aliases = Array.from(new Set([
63
63
  gitRemote ? `git:${gitRemote}` : '',
64
- packageName ? `package:${packageName}` : '',
65
- `repo:${normalizeAlias(repoName)}`
64
+ packageName ? `package:${packageName}` : ''
66
65
  ].filter(Boolean)));
67
66
 
68
67
  return {
69
- canonicalId: aliases[0],
68
+ canonicalId: aliases[0] || '',
70
69
  aliases,
71
70
  repoName,
72
71
  gitRemote: gitRemote || null,