@spences10/pi-mcp 0.0.28 → 0.0.29

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 +5 -3
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -1,14 +1,13 @@
1
1
  # @spences10/pi-mcp
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@spences10/pi-mcp?color=CB3837&logo=npm)](https://www.npmjs.com/package/@spences10/pi-mcp)
4
3
  [![built with Vite+](https://img.shields.io/badge/built%20with-Vite+-646CFF?logo=vite&logoColor=white)](https://viteplus.dev)
5
4
  [![tested with Vitest](https://img.shields.io/badge/tested%20with-Vitest-6E9F18?logo=vitest&logoColor=white)](https://vitest.dev)
5
+ [![npm version](https://img.shields.io/npm/v/@spences10/pi-mcp?color=CB3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/@spences10/pi-mcp)
6
+ [![license](https://img.shields.io/npm/l/@spences10/pi-mcp)](https://www.npmjs.com/package/@spences10/pi-mcp)
6
7
 
7
8
  Pi extension for connecting MCP servers and exposing their tools
8
9
  inside Pi.
9
10
 
10
- Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
11
-
12
11
  ## Installation
13
12
 
14
13
  ```bash
@@ -127,6 +126,9 @@ MCP extension.
127
126
 
128
127
  ## Development
129
128
 
129
+ Package scripts build transitive workspace dependencies first, then
130
+ run local tools through Vite+ with `vp exec`.
131
+
130
132
  ```bash
131
133
  pnpm --filter @spences10/pi-mcp run check
132
134
  pnpm --filter @spences10/pi-mcp run test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spences10/pi-mcp",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "Pi extension for connecting MCP servers and exposing their tools",
5
5
  "keywords": [
6
6
  "mcp",
@@ -33,10 +33,10 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@spences10/pi-child-env": "0.1.5",
37
- "@spences10/pi-tui-modal": "0.0.16",
38
- "@spences10/pi-context": "0.0.18",
39
- "@spences10/pi-project-trust": "0.0.7"
36
+ "@spences10/pi-context": "0.0.19",
37
+ "@spences10/pi-child-env": "0.1.6",
38
+ "@spences10/pi-project-trust": "0.0.8",
39
+ "@spences10/pi-tui-modal": "0.0.17"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@earendil-works/pi-coding-agent": "^0.74.1",
@@ -58,12 +58,12 @@
58
58
  },
59
59
  "scripts": {
60
60
  "build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
61
- "build:self": "tsc -p tsconfig.build.json",
61
+ "build:self": "vp exec tsc -p tsconfig.build.json",
62
62
  "check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
63
- "check:self": "tsc --noEmit -p tsconfig.json",
63
+ "check:self": "vp exec tsc --noEmit -p tsconfig.json",
64
64
  "test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
65
- "test:self": "vitest run",
66
- "coverage:self": "vitest run --coverage",
65
+ "test:self": "vp exec vitest run",
66
+ "coverage:self": "vp exec vitest run --coverage",
67
67
  "coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
68
68
  }
69
69
  }