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 +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +8 -2
- data/lib/scout_apm_mcp/server.rb +4 -0
- data/lib/scout_apm_mcp/version.rb +1 -1
- metadata +11 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee786e2a50c8985e1423731c5acf85264c5dce178d366238a317685762170c57
|
|
4
|
+
data.tar.gz: 8fda9d886c840af02bc5caeb0375b4d963bfef95c4c9c12492f415256a21d361
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
-
[](https://badge.fury.io/rb/scout_apm_mcp) [](https://github.com/amkisko/scout_apm_mcp.rb/actions/workflows/test.yml) [](https://codecov.io/gh/amkisko/scout_apm_mcp.rb)
|
|
3
|
+
[](https://badge.fury.io/rb/scout_apm_mcp) [](https://github.com/amkisko/scout_apm_mcp.rb/actions/workflows/test.yml) [](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](
|
|
327
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
322
328
|
|
data/lib/scout_apm_mcp/server.rb
CHANGED
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.
|
|
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:
|
|
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.
|
|
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: []
|