mcp-vitals 0.1.0 → 0.1.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
@@ -6,6 +6,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.1.1] — 2026-06-20
10
+
11
+ ### Changed
12
+
13
+ - Docs only (no code changes): added a terminal hero image to the README and
14
+ corrected the author name. Functionally identical to 0.1.0.
15
+
9
16
  ## [0.1.0] — 2026-06-20
10
17
 
11
18
  Initial release.
@@ -29,5 +36,6 @@ Initial release.
29
36
  discipline so `| jq` always works.
30
37
  - Published JSON Schema for `mcp-vitals.yaml` editor IntelliSense.
31
38
 
32
- [Unreleased]: https://github.com/shaxzodbek-uzb/mcp-vitals/compare/v0.1.0...HEAD
39
+ [Unreleased]: https://github.com/shaxzodbek-uzb/mcp-vitals/compare/v0.1.1...HEAD
40
+ [0.1.1]: https://github.com/shaxzodbek-uzb/mcp-vitals/compare/v0.1.0...v0.1.1
33
41
  [0.1.0]: https://github.com/shaxzodbek-uzb/mcp-vitals/releases/tag/v0.1.0
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Shaxzodbek Sobirov / Blaze
3
+ Copyright (c) 2026 Shaxzodbek Qambaraliyev / Blaze
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -6,22 +6,13 @@
6
6
  [![npm](https://img.shields.io/npm/v/mcp-vitals.svg)](https://www.npmjs.com/package/mcp-vitals)
7
7
  [![license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
8
8
 
9
- ```bash
10
- # Benchmark a tool's latency no install, no API key
11
- npx mcp-vitals bench --tool search --args '{"q":"hello"}' npx your-mcp-server
12
- ```
13
-
14
- ```
15
- Target: search (tool)
16
- Server: npx your-mcp-server via stdio
17
- Load: 50 iters, concurrency 1, warmup 1
9
+ <p align="center">
10
+ <img src="https://raw.githubusercontent.com/shaxzodbek-uzb/mcp-vitals/main/assets/hero.png" alt="mcp-vitals — benchmark MCP tool-call latency (p50/p95/p99) and gate CI on a latency budget" width="900">
11
+ </p>
18
12
 
19
- Cold start 41.8 ms
20
-
21
- min mean p50 p90 p95 p99 max stddev
22
- 6.1 ms 8.0 ms 7.6 ms 9.9 ms 11.4 ms 18.7 ms 22.0 ms 2.4 ms
23
-
24
- 50 completed · 124.6 req/s · 0 errors
13
+ ```bash
14
+ # Benchmark a tool's latency and fail CI if it's too slow — no install, no API key
15
+ npx mcp-vitals bench --tool search --fail-on 'p95<200ms' npx your-mcp-server
25
16
  ```
26
17
 
27
18
  ---
@@ -219,4 +210,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md). Issues and PRs welcome.
219
210
 
220
211
  ## License
221
212
 
222
- [MIT](LICENSE) © Shaxzodbek Sobirov / Blaze
213
+ [MIT](LICENSE) © Shaxzodbek Qambaraliyev / Blaze
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-vitals",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Vital signs for your MCP server: inspect capabilities, benchmark tool-call latency (p50/p95/p99), and assert health in CI. The ab/k6/pytest for MCP servers — non-interactive, scriptable, LLM-free.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -70,7 +70,7 @@
70
70
  "typescript-eslint": "^8.18.1",
71
71
  "vitest": "^2.1.8"
72
72
  },
73
- "author": "Shaxzodbek Sobirov <shaxzodbek@blaze.uz>",
73
+ "author": "Shaxzodbek Qambaraliyev <shaxzodbek@blaze.uz>",
74
74
  "license": "MIT",
75
75
  "homepage": "https://github.com/shaxzodbek-uzb/mcp-vitals#readme",
76
76
  "repository": {