@pi-unipi/mcp 2.0.7 → 2.0.8

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 CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@pi-unipi/mcp",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "MCP server management extension for Pi coding agent — browse, add, configure, and use MCP servers",
5
5
  "type": "module",
6
+ "main": "src/index.ts",
6
7
  "license": "MIT",
7
8
  "author": "Neuron Mr White",
8
9
  "repository": {
@@ -37,9 +38,9 @@
37
38
  "@pi-unipi/core": "*"
38
39
  },
39
40
  "peerDependencies": {
40
- "@mariozechner/pi-coding-agent": "*",
41
- "@mariozechner/pi-tui": "*",
42
- "@sinclair/typebox": "*"
41
+ "@earendil-works/pi-coding-agent": "^0.75.5",
42
+ "@earendil-works/pi-tui": "^0.75.5",
43
+ "typebox": "^1.1.38"
43
44
  },
44
45
  "devDependencies": {
45
46
  "@types/node": "^25.6.0"
package/src/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Registers commands, handles session lifecycle, wires up MCP server management.
5
5
  */
6
6
 
7
- import type { ExtensionAPI, ExtensionCommandContext } from "@mariozechner/pi-coding-agent";
7
+ import type { ExtensionAPI, ExtensionCommandContext } from "@earendil-works/pi-coding-agent";
8
8
  import {
9
9
  UNIPI_EVENTS,
10
10
  MODULES,
@@ -18,8 +18,8 @@ import {
18
18
  truncateToWidth,
19
19
  type TUI,
20
20
  visibleWidth,
21
- } from "@mariozechner/pi-tui";
22
- import type { Theme, KeybindingsManager } from "@mariozechner/pi-coding-agent";
21
+ } from "@earendil-works/pi-tui";
22
+ import type { Theme, KeybindingsManager } from "@earendil-works/pi-coding-agent";
23
23
  import type { CatalogEntry, CatalogData, McpConfig, McpMetadata } from "../types.js";
24
24
  import { loadCatalog } from "../config/sync.js";
25
25
  import {
@@ -5,8 +5,8 @@
5
5
  * edit, delete, scope switching, and sync trigger.
6
6
  */
7
7
 
8
- import { Key, matchesKey, truncateToWidth, type TUI, visibleWidth } from "@mariozechner/pi-tui";
9
- import type { Theme, KeybindingsManager } from "@mariozechner/pi-coding-agent";
8
+ import { Key, matchesKey, truncateToWidth, type TUI, visibleWidth } from "@earendil-works/pi-tui";
9
+ import type { Theme, KeybindingsManager } from "@earendil-works/pi-coding-agent";
10
10
  import type { ServerState } from "../types.js";
11
11
  import {
12
12
  loadMcpConfig,