@ian-pascoe/pi-mcp 0.2.0 → 0.3.0
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 +5 -1
- package/skills/pi-mcp/SKILL.md +16 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ian-pascoe/pi-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A complete Model Context Protocol Host for Pi",
|
|
6
6
|
"keywords": [
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"src",
|
|
29
|
+
"skills",
|
|
29
30
|
"dist",
|
|
30
31
|
"README.md",
|
|
31
32
|
"LICENSE"
|
|
@@ -54,6 +55,9 @@
|
|
|
54
55
|
"pi": {
|
|
55
56
|
"extensions": [
|
|
56
57
|
"./src/index.ts"
|
|
58
|
+
],
|
|
59
|
+
"skills": [
|
|
60
|
+
"./skills"
|
|
57
61
|
]
|
|
58
62
|
},
|
|
59
63
|
"scripts": {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: pi-mcp
|
|
3
|
+
description: Configure or diagnose Pi MCP when settings are invalid, Servers fail to connect, authentication fails, or dynamic tools are missing.
|
|
4
|
+
license: MIT
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Pi MCP
|
|
8
|
+
|
|
9
|
+
Keep edits scoped to `mcp`. Store secrets behind `${NAME}` environment references and redact resolved values. Treat `/mcp` as human-operated: when unavailable, request one exact command and wait for its output. Use `/mcp test` for connectivity instead of invoking Server Tools, Prompts, or Resources.
|
|
10
|
+
|
|
11
|
+
1. Read the relevant settings, authentication, or connection section of [`../../README.md`](../../README.md).
|
|
12
|
+
2. Run `/mcp list`, then `/mcp status`. Stop when either identifies a decisive settings or state failure.
|
|
13
|
+
3. For a runtime failure, inspect `/mcp logs <server>`, then use `/mcp test <server>` after the cause is repaired.
|
|
14
|
+
4. Use `/mcp reconnect <server>` only for a repaired live definition.
|
|
15
|
+
5. Prefer the MCP Command Surface for requested mutations, then repeat `list`, `status`, and an approved `test`.
|
|
16
|
+
6. Finish when provenance is correct and the Server reaches its intended connected, disabled, or authentication-required state without exposing a secret.
|