pi-research 1.2.0 → 1.2.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.
- package/README.md +9 -1
- package/bin/pi-research.js +5 -0
- package/bin/unblind-mcp.js +5 -0
- package/package.json +6 -3
- package/pi-research.js +5 -0
- package/unblind-mcp.js +5 -0
package/README.md
CHANGED
|
@@ -210,6 +210,14 @@ pi install npm:pi-research
|
|
|
210
210
|
|
|
211
211
|
This registers the Pi extension and keeps the public tool name `pi-research`.
|
|
212
212
|
|
|
213
|
+
### npm install
|
|
214
|
+
|
|
215
|
+
```bash
|
|
216
|
+
npm i pi-research
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
This is the package install command that npm shows on the package page.
|
|
220
|
+
|
|
213
221
|
### MCP-only — any agent
|
|
214
222
|
|
|
215
223
|
Run the MCP server directly from npm:
|
|
@@ -280,7 +288,7 @@ A separate npm package named `unblind-mcp` can be added later as a tiny wrapper
|
|
|
280
288
|
## Release notes
|
|
281
289
|
|
|
282
290
|
- Package name: `pi-research`
|
|
283
|
-
- Version: `1.1
|
|
291
|
+
- Version: `1.2.1`
|
|
284
292
|
- Entry point: `extensions/pi-research.ts`
|
|
285
293
|
- MCP entry point: `mcp/server.js`
|
|
286
294
|
- MCP compatibility shim: `mcp-server.js`
|
package/package.json
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-research",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Pi extension for web research.",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "./index.js",
|
|
9
9
|
"bin": {
|
|
10
|
-
"pi-research": "./
|
|
11
|
-
"unblind-mcp": "./mcp
|
|
10
|
+
"pi-research": "./pi-research.js",
|
|
11
|
+
"unblind-mcp": "./unblind-mcp.js"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
+
"bin",
|
|
14
15
|
"extensions",
|
|
15
16
|
"index.js",
|
|
16
17
|
"lib",
|
|
17
18
|
"mcp",
|
|
18
19
|
"mcp-server.js",
|
|
20
|
+
"pi-research.js",
|
|
21
|
+
"unblind-mcp.js",
|
|
19
22
|
"README.md",
|
|
20
23
|
"THIRD_PARTY_NOTICES.md",
|
|
21
24
|
"package.json"
|
package/pi-research.js
ADDED