pi-mcp-adapter 2.0.0 → 2.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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.0.1] - 2026-02-01
11
+
12
+ ### Fixed
13
+ - Adapt execute signature to pi v0.51.0: add signal, onUpdate, ctx parameters
14
+
10
15
  ## [2.0.0] - 2026-01-29
11
16
 
12
17
  ### Changed
package/index.ts CHANGED
@@ -212,7 +212,7 @@ Mode: tool (call) > connect > describe > search > server (list) > nothing (statu
212
212
  regex?: boolean;
213
213
  includeSchemas?: boolean;
214
214
  server?: string;
215
- }) {
215
+ }, _signal, _onUpdate, _ctx) {
216
216
  // Parse args from JSON string if provided
217
217
  let parsedArgs: Record<string, unknown> | undefined;
218
218
  if (params.args) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-mcp-adapter",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "MCP (Model Context Protocol) adapter extension for Pi coding agent",
5
5
  "type": "module",
6
6
  "license": "MIT",