scout_apm_mcp 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94c095f06ab792c7e66a4a3d7893a0476308730d1d346f661ba34d52be5b665b
4
- data.tar.gz: c1823c4b464ab833663a3026ff3f1c1d90de4c6c3b832f57257ce1f495c161e3
3
+ metadata.gz: ee786e2a50c8985e1423731c5acf85264c5dce178d366238a317685762170c57
4
+ data.tar.gz: 8fda9d886c840af02bc5caeb0375b4d963bfef95c4c9c12492f415256a21d361
5
5
  SHA512:
6
- metadata.gz: adba47ba7ab8d8838e42c236afe334243425f38701da5467e78badd91195ed029dfe4f5c3b308903c67f118ef10778a5e14dbd4dd4f8feb9801a3778da4d20d0
7
- data.tar.gz: 657457f4239d0531bf7cac76fcd15e5ac9416947fd24d9ce83e38a74c47d0583a41b8194ae526d915ab540c0a3fb56c50cb0c111a22e5f9a23197c725550031a
6
+ metadata.gz: 3434d01dfa3783ba3a1364caadd17aae11deb0170557fba1277d3b9b72e3706cbb5eed30a984ca9b0222f85933caff79242a05b19d400693e27b1b0a8adc9a08
7
+ data.tar.gz: 87540aa4f25083d54b2aee4c9080c3b3544f3c87fe39462198949814ce12a82aae9dae266f73bbbf940ad0f643c78cf5435c40520a221d642b3859d8ab1b6683
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.1.1 (2025-11-21)
4
+
5
+ - Fixed `NullLogger` missing `set_client_initialized` method that caused MCP initialization errors
6
+ - Added `set_client_initialized` method with optional argument to match fast-mcp logger interface
7
+
3
8
  ## 0.1.0 (2025-11-20)
4
9
 
5
10
  - Initial release
@@ -9,5 +14,5 @@
9
14
  - Support for environment variables and 1Password integration (via optional `opdotenv` gem)
10
15
  - Complete RBS type signatures for all public APIs
11
16
  - Comprehensive test suite with RSpec
12
- - Requires Ruby 3.0 or higher
17
+ - Requires Ruby 3.1 or higher
13
18
  - All dependencies use latest compatible versions with pessimistic versioning for security
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # scout_apm_mcp
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/scout_apm_mcp.svg)](https://badge.fury.io/rb/scout_apm_mcp) [![Test Status](https://github.com/amkisko/scout_apm_mcp.rb/actions/workflows/test.yml/badge.svg)](https://github.com/amkisko/scout_apm_mcp.rb/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/amkisko/scout_apm_mcp.rb/graph/badge.svg?token=HVWDDNLEO5)](https://codecov.io/gh/amkisko/scout_apm_mcp.rb)
3
+ [![Gem Version](https://badge.fury.io/rb/scout_apm_mcp.svg?v=0.1.0)](https://badge.fury.io/rb/scout_apm_mcp) [![Test Status](https://github.com/amkisko/scout_apm_mcp.rb/actions/workflows/test.yml/badge.svg)](https://github.com/amkisko/scout_apm_mcp.rb/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/amkisko/scout_apm_mcp.rb/graph/badge.svg?token=HVWDDNLEO5)](https://codecov.io/gh/amkisko/scout_apm_mcp.rb)
4
4
 
5
5
  Ruby gem providing ScoutAPM API client and MCP (Model Context Protocol) server tools for fetching traces, endpoints, metrics, errors, and insights. Integrates with MCP-compatible clients like Cursor IDE, Claude Desktop, and other MCP-enabled tools.
6
6
 
@@ -316,7 +316,13 @@ Review policy:
316
316
  - It might take up to 6 calendar months to review and merge pull request
317
317
  - It might take up to 1 calendar year to review an issue
318
318
 
319
+ For more information, see [CONTRIBUTING.md](CONTRIBUTING.md).
320
+
321
+ ## Security
322
+
323
+ If you discover a security vulnerability, please report it responsibly. See [SECURITY.md](SECURITY.md) for details.
324
+
319
325
  ## License
320
326
 
321
- The gem is available as open source under the terms of the [MIT License](LICENSE.md).
327
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
322
328
 
@@ -82,6 +82,10 @@ module ScoutApmMcp
82
82
  @client_initialized
83
83
  end
84
84
 
85
+ def set_client_initialized(value = true)
86
+ @client_initialized = value
87
+ end
88
+
85
89
  def stdio_transport?
86
90
  @transport == :stdio
87
91
  end
@@ -1,3 +1,3 @@
1
1
  module ScoutApmMcp
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,29 +1,34 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout_apm_mcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Makarov
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-11-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: fast-mcp
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - "~>"
16
+ - - ">="
18
17
  - !ruby/object:Gem::Version
19
18
  version: '0.1'
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '2.0'
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
23
25
  requirements:
24
- - - "~>"
26
+ - - ">="
25
27
  - !ruby/object:Gem::Version
26
28
  version: '0.1'
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '2.0'
27
32
  - !ruby/object:Gem::Dependency
28
33
  name: base64
29
34
  requirement: !ruby/object:Gem::Requirement
@@ -242,7 +247,6 @@ metadata:
242
247
  homepage_uri: https://github.com/amkisko/scout_apm_mcp.rb
243
248
  documentation_uri: https://github.com/amkisko/scout_apm_mcp.rb#readme
244
249
  rubygems_mfa_required: 'true'
245
- post_install_message:
246
250
  rdoc_options: []
247
251
  require_paths:
248
252
  - lib
@@ -257,8 +261,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
257
261
  - !ruby/object:Gem::Version
258
262
  version: '0'
259
263
  requirements: []
260
- rubygems_version: 3.5.9
261
- signing_key:
264
+ rubygems_version: 3.6.9
262
265
  specification_version: 4
263
266
  summary: ScoutAPM MCP (Model Context Protocol) server for Cursor IDE integration
264
267
  test_files: []