@airabbit/sqlite-mcp-server 0.1.12 → 0.1.16
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/build/index.js +4 -4
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -447,7 +447,7 @@ export class SqliteMcpServer {
|
|
|
447
447
|
console.error('SQLite MCP server running on stdio');
|
|
448
448
|
}
|
|
449
449
|
}
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
450
|
+
// Always run the server when this file is executed
|
|
451
|
+
// (removed entry point check that failed with symlinked bin paths)
|
|
452
|
+
const server = new SqliteMcpServer();
|
|
453
|
+
server.run().catch(console.error);
|