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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.1] - 2026-03-27

### Fixed

- Claude Code plugin: added `commands`, `mcpServers`, and `hooks` declarations to `plugin.json`
- Claude Code plugin: added `matcher` to SessionStart hook for proper trigger
- Claude Code plugin: added `/mpp-inspect`, `/mpp-scan`, `/mpp-flow` slash command skills

## [0.1.0] - 2026-03-27

### Added
Expand Down
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.0",
"version": "0.1.1",
"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.0",
"version": "0.1.1",
"description": "Mock MPP server for testing and demoing mpp-inspector",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion 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.0",
"version": "0.1.1",
"author": {
"name": "MPP Inspector Contributors",
"url": "https://github.com/amgb20/MPP-Inspector"
Expand Down
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.0",
"version": "0.1.1",
"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.0"
"mpp-inspector": "0.1.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
Expand Down
Loading