sdl-mcp 0.11.9 → 0.11.10
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/config/sdlmcp.config.example.json +2 -1
- package/config/sdlmcp.config.schema.json +8 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/config/types.d.ts +13 -0
- package/dist/config/types.d.ts.map +1 -1
- package/dist/config/types.js +7 -12
- package/dist/config/types.js.map +1 -1
- package/dist/indexer/provider-first/shadow-finalization.d.ts.map +1 -1
- package/dist/indexer/provider-first/shadow-finalization.js +80 -134
- package/dist/indexer/provider-first/shadow-finalization.js.map +1 -1
- package/dist/mcp/tools/index.d.ts +2 -5
- package/dist/mcp/tools/index.d.ts.map +1 -1
- package/dist/mcp/tools/index.js +1 -0
- package/dist/mcp/tools/index.js.map +1 -1
- package/dist/server.d.ts +12 -6
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +53 -27
- package/dist/server.js.map +1 -1
- package/package.json +5 -5
- package/templates/SDL.md +1 -0
|
@@ -1660,11 +1660,18 @@
|
|
|
1660
1660
|
"type": "boolean",
|
|
1661
1661
|
"description": "When gateway is enabled, also register the 25 legacy tool names for backward compatibility. Deprecated: will be removed in a future version.",
|
|
1662
1662
|
"default": false
|
|
1663
|
+
},
|
|
1664
|
+
"toolNameFormat": {
|
|
1665
|
+
"type": "string",
|
|
1666
|
+
"enum": ["canonical", "openai"],
|
|
1667
|
+
"description": "Tool name format advertised to MCP clients. Use openai to replace dots with underscores for strict tool-name validators.",
|
|
1668
|
+
"default": "canonical"
|
|
1663
1669
|
}
|
|
1664
1670
|
},
|
|
1665
1671
|
"default": {
|
|
1666
1672
|
"enabled": true,
|
|
1667
|
-
"emitLegacyTools": false
|
|
1673
|
+
"emitLegacyTools": false,
|
|
1674
|
+
"toolNameFormat": "canonical"
|
|
1668
1675
|
}
|
|
1669
1676
|
},
|
|
1670
1677
|
"httpAuth": {
|