@graypirate/tabula-mcp 1.0.0 → 1.0.1

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 +13 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -4,12 +4,20 @@ Local stdio MCP server for Tabula. This package is a transport adapter and uses
4
4
 
5
5
  ## Global Installation
6
6
 
7
- After the package is published, this installs the `tabula-mcp` executable and a compatible Tabula Core library from the npm registry. [Install Tabula Core globally](../core/README.md#global-installation) as well when you want its standalone CLI.
7
+ Install the `tabula-mcp` executable and a compatible Tabula Core library with Bun:
8
8
 
9
9
  ```bash
10
10
  bun add --global @graypirate/tabula-mcp
11
11
  ```
12
12
 
13
+ Or with npm:
14
+
15
+ ```bash
16
+ npm install --global @graypirate/tabula-mcp
17
+ ```
18
+
19
+ Bun is required at runtime regardless of which package manager installs it. [Install Tabula Core globally](../core/README.md#global-installation) separately if you also want the `tabula` CLI.
20
+
13
21
  Verify:
14
22
  ```bash
15
23
  command -v tabula-mcp
@@ -19,6 +27,10 @@ Upgrade or remove the MCP package with Bun:
19
27
  ```bash
20
28
  bun update --global @graypirate/tabula-mcp
21
29
  bun remove --global @graypirate/tabula-mcp
30
+
31
+ # npm equivalents
32
+ npm update --global @graypirate/tabula-mcp
33
+ npm uninstall --global @graypirate/tabula-mcp
22
34
  ```
23
35
 
24
36
  Tabula MCP uses stdio. The MCP client starts and owns the server process; do not run it as a background daemon.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graypirate/tabula-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Local stdio MCP server for Tabula.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,11 +20,15 @@
20
20
  "dist",
21
21
  "README.md"
22
22
  ],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/graypirate/Tabula"
26
+ },
23
27
  "scripts": {
24
28
  "build": "rm -rf dist && tsc -p tsconfig.build.json && chmod 755 dist/index.js",
25
29
  "prepublishOnly": "bun run typecheck && bun test && bun run build",
26
30
  "start": "bun src/index.ts",
27
- "test": "bun test",
31
+ "test": "bun run --cwd ../core build && bun test",
28
32
  "typecheck": "bunx tsc --noEmit"
29
33
  },
30
34
  "dependencies": {