mcp-tabula-api 3.0.0

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/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "mcp-tabula-api",
3
+ "version": "3.0.0",
4
+ "description": "MCP bridge that lets a cloud AI (Claude, etc.) drive a local Tabula vault via its Headless API.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "mcp-tabula-api": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "prepublishOnly": "bun run build",
16
+ "start": "bun run src/index.ts",
17
+ "start:http": "MCP_TRANSPORT=http bun run src/index.ts",
18
+ "test": "bun test",
19
+ "inspector": "npx @modelcontextprotocol/inspector bun src/index.ts",
20
+ "inspector:http": "npx @modelcontextprotocol/inspector -- --url http://localhost:8080/mcp",
21
+ "build": "bun build --target=node src/index.ts --outdir=dist",
22
+ "test:prod": "bun run build && node test/test-sdk.js",
23
+ "inspector:prod": "npx @modelcontextprotocol/inspector node dist/index.js"
24
+ },
25
+ "devDependencies": {
26
+ "@types/bun": "latest",
27
+ "@types/node": "^25.0.3"
28
+ },
29
+ "dependencies": {
30
+ "@modelcontextprotocol/sdk": "^1.27.1",
31
+ "hono": "^4.0.0",
32
+ "zod": "^4.3.5"
33
+ }
34
+ }