Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mpp-inspector",
"version": "0.1.1",
"version": "0.1.2",
"description": "Testing and debugging toolkit for Machine Payments Protocol",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/mock-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mpp-inspector/mock-server",
"version": "0.1.1",
"version": "0.1.2",
"description": "Mock MPP server for testing and demoing mpp-inspector",
"type": "module",
"bin": {
Expand Down
17 changes: 15 additions & 2 deletions packages/plugin/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mpp-inspector",
"description": "Inspect, debug, and test Machine Payments Protocol (HTTP 402) endpoints directly from Claude Code",
"version": "0.1.1",
"version": "0.1.2",
"author": {
"name": "MPP Inspector Contributors",
"url": "https://github.com/amgb20/MPP-Inspector"
Expand All @@ -25,5 +25,18 @@
"args": ["${CLAUDE_PLUGIN_ROOT}/dist/index.js"]
}
},
"hooks": "./hooks/hooks.json"
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/dist/hooks/session-check.js\"",
"timeout": 5000
}
]
}
]
}
}
4 changes: 2 additions & 2 deletions packages/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mpp-inspector/plugin",
"version": "0.1.1",
"version": "0.1.2",
"description": "MCP server and Claude Code plugin for Machine Payments Protocol inspection",
"type": "module",
"bin": {
Expand Down Expand Up @@ -42,7 +42,7 @@
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.23",
"mpp-inspector": "0.1.1"
"mpp-inspector": "0.1.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
Expand Down
Loading