db4app-mcp-server 0.1.2 → 0.1.3
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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15010,9 +15010,9 @@ function formatValue(value) {
|
|
|
15010
15010
|
async function main() {
|
|
15011
15011
|
const transport = new StdioServerTransport();
|
|
15012
15012
|
await mcpServer.connect(transport);
|
|
15013
|
-
console.error("[mcp-server
|
|
15013
|
+
console.error("[db4app-mcp-server] listening on stdio");
|
|
15014
15014
|
}
|
|
15015
15015
|
main().catch((error) => {
|
|
15016
|
-
console.error("[mcp-server
|
|
15016
|
+
console.error("[db4app-mcp-server] fatal", error);
|
|
15017
15017
|
process.exit(1);
|
|
15018
15018
|
});
|
package/package.json
CHANGED