@airabbit/sqlite-mcp-server 0.1.9 → 0.1.11

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/README.md +22 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -51,7 +51,28 @@ An example SQLite database (`example-small.sqlite`) is included with sample data
51
51
 
52
52
  ### Claude Desktop Configuration
53
53
 
54
- Add this to your Claude Desktop config file (usually `~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
54
+ Add this to your Claude Desktop config file (usually `~/Library/Application Support/Claude/claude_desktop_config.json` on macOS).
55
+ No API token is required; just set the database path.
56
+
57
+ **Using the published npm package:**
58
+ ```json
59
+ {
60
+ "mcpServers": {
61
+ "@airabbit/sqlite-mcp-server": {
62
+ "command": "npx",
63
+ "args": [
64
+ "-y",
65
+ "@airabbit/sqlite-mcp-server@latest"
66
+ ],
67
+ "env": {
68
+ "SQLITE_DB_PATH": "/absolute/path/to/your/database.sqlite"
69
+ }
70
+ }
71
+ }
72
+ }
73
+ ```
74
+
75
+ **Using a local build:**
55
76
 
56
77
  ```json
57
78
  {
@@ -87,5 +108,3 @@ Add this to your Claude Desktop config file (usually `~/Library/Application Supp
87
108
  ```
88
109
 
89
110
  Replace the paths with your actual installation path and database file path.
90
-
91
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airabbit/sqlite-mcp-server",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Generic SQLite Model Context Protocol (MCP) server",
5
5
  "main": "build/index.js",
6
6
  "type": "module",