mcpeye 0.1.0 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01f13d2a4a0f1671c2fe3cec6feef771c84da1e88f101915972330c5c28692ce
4
- data.tar.gz: 811c321338035cc6c1d89ae1a4c51a5389d2a5e10c60d006c8404dbd045c98f1
3
+ metadata.gz: a764f79cce8846c6a9bcf750e778de9f88c082518eac5c6c4d271c15743456a4
4
+ data.tar.gz: c1621b94ab8dc5689cd4b335d1bb4fd79b854c430ea83754c81feb138b510150
5
5
  SHA512:
6
- metadata.gz: 258a88c0365ba40bd06487be165223e88d002432ca7820a2b79c986bbc81799758936d1d593aefcc908e46b4038374c2058c1557ba3cef89200e99fdbd1dd9e0
7
- data.tar.gz: 04fa49d61cdb2552b7c6a1cb38db0f5108921897a84db135dc2637ef2b3befc2de728312961734ce6d21dcb32fe7550f271816b73e2ff2df15f0e19bd9c8a919
6
+ metadata.gz: 5b0c8dd68029607b4126f3f0f9423e560b3a278919edd449498cd7bf3cb11f9edbd14da33b705579a6c719e89d6167c4ac92c47a1f660505c30e1ae27c7e5339
7
+ data.tar.gz: e88ec3f95170142f0e5fed4aeff5a2e6ad8c1821c818b257c01e0066dedb03e06b0522ebf235ad3379800aeaee010e9f179d3ffc294d9e33c6dd43fb5f35deb9
data/CHANGELOG.md ADDED
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ All notable changes to the `mcpeye` gem are documented here.
4
+ This project adheres to [Semantic Versioning](https://semver.org).
5
+
6
+ ## 0.1.1
7
+
8
+ - Docs: add this changelog. No functional or API changes.
9
+
10
+ ## 0.1.0
11
+
12
+ - Initial release: `Mcpeye.track(server, project_id, ingest_url:)` — MCP server
13
+ instrumentation that injects the `mcpeyeIntent` parameter, captures tool
14
+ calls, and ships them to a self-hosted mcpeye instance. Pure Ruby stdlib at
15
+ runtime, no gem dependencies.
data/README.md CHANGED
@@ -8,8 +8,7 @@ agents try to do through your MCP tools — and, crucially, the asks your tools
8
8
  instance. There the worker clusters sessions into the **Intent Gap Report**: the
9
9
  top user asks your tools attempted but failed to deliver.
10
10
 
11
- This gem is the dogfooding SDK for the mcpeye team's own Rails-based MCP server,
12
- and for any Ruby shop running one. It is **pure stdlib at runtime** (`net/http`,
11
+ This gem instruments any Ruby / Rails MCP server. It is **pure stdlib at runtime** (`net/http`,
13
12
  `json`, `securerandom`) and **never raises into, or alters, the host server**.
14
13
  Capture is O(1); set `flush_interval:` to ship telemetry off the tool-call thread
15
14
  (see [Options](#options) for the zero-thread default's one caveat).
@@ -134,7 +133,7 @@ Identity values (`userId`/`client`/`serverVersion`) are coerced to strings befor
134
133
  they're sent (the ingest contract requires strings), so an integer id is fine —
135
134
  but pass an **opaque, non-PII** value.
136
135
 
137
- ## Dogfooding in a Rails MCP server
136
+ ## Use in a Rails MCP server
138
137
 
139
138
  `config/initializers/mcpeye.rb`:
140
139
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mcpeye
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mcpeye
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - mcpeye
@@ -19,6 +19,7 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
+ - CHANGELOG.md
22
23
  - README.md
23
24
  - lib/mcpeye.rb
24
25
  - lib/mcpeye/intent.rb
@@ -48,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
48
49
  - !ruby/object:Gem::Version
49
50
  version: '0'
50
51
  requirements: []
51
- rubygems_version: 3.4.10
52
+ rubygems_version: 3.4.19
52
53
  signing_key:
53
54
  specification_version: 4
54
55
  summary: Product analytics for Ruby/Rails MCP servers.