@steno-ai/mcp 0.1.16 → 0.1.17

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/README.md CHANGED
File without changes
package/dist/cli.d.ts CHANGED
File without changes
package/dist/cli.d.ts.map CHANGED
File without changes
package/dist/cli.js.map CHANGED
File without changes
package/dist/index.d.ts CHANGED
File without changes
File without changes
package/dist/index.js CHANGED
File without changes
package/dist/index.js.map CHANGED
File without changes
package/dist/init.d.ts CHANGED
File without changes
File without changes
package/dist/init.js.map CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/local.d.ts CHANGED
File without changes
File without changes
package/dist/local.js CHANGED
File without changes
package/dist/local.js.map CHANGED
File without changes
package/dist/server.d.ts CHANGED
File without changes
File without changes
package/dist/server.js CHANGED
File without changes
File without changes
package/dist/steno-mcp CHANGED
File without changes
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@steno-ai/mcp",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "MCP server for Claude Code, Claude Desktop, and other MCP clients",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/SankrityaT/steno-ai.git",
8
+ "url": "git+https://github.com/SankrityaT/steno-ai.git",
9
9
  "directory": "packages/mcp-server"
10
10
  },
11
11
  "type": "module",
12
12
  "bin": {
13
- "steno-mcp": "./dist/cli.js",
14
- "steno-mcp-init": "./dist/init.js"
13
+ "steno-mcp": "dist/cli.js",
14
+ "steno-mcp-init": "dist/init.js"
15
15
  },
16
16
  "exports": {
17
17
  ".": {
@@ -26,26 +26,26 @@
26
26
  "src",
27
27
  "README.md"
28
28
  ],
29
- "scripts": {
30
- "test": "vitest run",
31
- "build": "tsc",
32
- "build:sidecar": "bash scripts/build-sidecar.sh",
33
- "typecheck": "tsc --noEmit"
34
- },
35
29
  "dependencies": {
36
30
  "@modelcontextprotocol/sdk": "^1",
37
- "@steno-ai/engine": "workspace:*",
38
- "@steno-ai/openai-adapter": "workspace:*",
39
- "@steno-ai/openai-compat-adapter": "workspace:*",
40
- "@steno-ai/sqlite-adapter": "workspace:*",
41
- "@steno-ai/supabase-adapter": "workspace:*",
42
31
  "@supabase/supabase-js": "^2.49.0",
43
32
  "openai": "^4.0.0",
44
- "zod": "^3.25"
33
+ "zod": "^3.25",
34
+ "@steno-ai/engine": "0.1.11",
35
+ "@steno-ai/openai-compat-adapter": "0.1.1",
36
+ "@steno-ai/supabase-adapter": "0.1.8",
37
+ "@steno-ai/sqlite-adapter": "0.1.4",
38
+ "@steno-ai/openai-adapter": "0.1.2"
45
39
  },
46
40
  "devDependencies": {
47
41
  "@types/node": "^22",
48
42
  "typescript": "^5.7",
49
43
  "vitest": "^3"
44
+ },
45
+ "scripts": {
46
+ "test": "vitest run",
47
+ "build": "tsc",
48
+ "build:sidecar": "bash scripts/build-sidecar.sh",
49
+ "typecheck": "tsc --noEmit"
50
50
  }
51
- }
51
+ }
package/src/cli.ts CHANGED
File without changes
package/src/index.ts CHANGED
File without changes
package/src/init.ts CHANGED
File without changes
File without changes
package/src/local.ts CHANGED
File without changes
package/src/server.ts CHANGED
File without changes