@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.
Files changed (2) hide show
  1. package/build/index.js +4 -4
  2. 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
- if (import.meta.url === `file://${process.argv[1]}`) {
451
- const server = new SqliteMcpServer();
452
- server.run().catch(console.error);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airabbit/sqlite-mcp-server",
3
- "version": "0.1.12",
3
+ "version": "0.1.16",
4
4
  "description": "Generic SQLite Model Context Protocol (MCP) server",
5
5
  "main": "build/index.js",
6
6
  "type": "module",