observability-toolkit 2.1.0 → 2.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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  MCP server for observability tooling — query traces, metrics, logs, and LLM events from agentic coding tools. Works with any agent emitting OTel GenAI semantic conventions. Ingest via OTLP to Cloudflare R2 or read from local JSONL.
4
4
 
5
- **Version**: v2.1.0 | **License**: MIT
5
+ **Version**: v2.1.0 | **Published**: 2026-04-07 | **License**: MIT
6
6
 
7
7
  ---
8
8
 
@@ -51,6 +51,8 @@ node ~/.claude/mcp-servers/observability-toolkit/dist/server.js
51
51
  | `obs_export_confident` | Export evaluations to Confident AI |
52
52
  | `obs_get_trace_url` | Get trace viewer URL |
53
53
  | `obs_setup_claudeignore` | Add entries to .claudeignore |
54
+ | `obs_export_jaeger` | Export spans to a local Jaeger instance via OTLP HTTP |
55
+ | `obs_detect_trace_anomalies` | Detect anomalous spans — duration, error status, token usage, unknown names, instrumentation loops |
54
56
 
55
57
  ---
56
58
 
@@ -241,3 +243,4 @@ See [docs/repomix/token-tree.txt](docs/repomix/token-tree.txt) for the full file
241
243
  | [docs/api-provisioning-security.md](docs/api-provisioning-security.md) | Security properties and threat model |
242
244
  | [docs/reliability/security.md](docs/reliability/security.md) | Security controls |
243
245
  | [docs/hooks-integration.md](docs/hooks-integration.md) | Hooks system integration — producer-consumer architecture, type chain, path coupling |
246
+ | [docs/test-anti-patterns.md](docs/test-anti-patterns.md) | Test anti-patterns — patterns to avoid and shared helpers to use instead |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "observability-toolkit",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "MCP server for observability tooling - query traces, metrics, logs from local JSONL or SigNoz",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",