airbrake_mcp 1.0.0 → 1.0.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: 554243b4d4b33ab9844e997247d1969b7fa8eb91bfb3206ad58b5d0ead331cff
4
- data.tar.gz: ba8ef0c4be17a882003b4f79b795226ba18448bc89dfd0429dc408366d0968a8
3
+ metadata.gz: b2240a66c5be534864e153cecb78600f027a30e877974cbad9a21a1b6b4823bf
4
+ data.tar.gz: d55ff5ccc6a5e9e4bb4bcb943582c997faec795378affc05175f6bd4c47f57b3
5
5
  SHA512:
6
- metadata.gz: 8c0d03b6f73def14080ac2ffc7a71311fc3bdd902b3be4893c217dad80a712d93660dd67590c2ab0dd5558148656eb58e96cdd7cb6072dd79d26dfca57adff21
7
- data.tar.gz: 99ce5a79ea2ba8101f46a055a9ebdc65fdd2c199865619077f902bd3dad42fdbac4de0a6174dfd988852884e6b4b6cae644cd1601abce2bd4a6766672ce413ef
6
+ metadata.gz: 6190373dabc25f17f30f5d7ecade25fe344802a72f5ff70085e05b652bd2f2adab074fdd8503bbde1a9de41f961a609cd13f9e6fdaeeddcc1b414c6a63519317
7
+ data.tar.gz: 346e2155248f9e9449f879542071be018b68e624db4fdb5771696fe6de12353193d88439ede288fb71476a32341d2a46773a8de21b7b34312673118d03b4b184
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.2] - 2025-01-06
4
+
5
+ ### Added
6
+ - Documentation for rbenv/asdf/chruby users (non-interactive shell shim paths)
7
+ - Improved `claude mcp add` examples with `$(which airbrake_mcp)`
8
+
9
+ ## [1.0.1] - 2025-01-06
10
+
11
+ ### Changed
12
+ - Renamed `exe` directory to `bin` (POSIX convention)
13
+ - Added `claude mcp add` quick setup command to README
14
+
3
15
  ## [1.0.0] - 2025-01-05
4
16
 
5
17
  ### Added
data/README.md CHANGED
@@ -45,29 +45,45 @@ bundle install
45
45
 
46
46
  ## Claude Code Integration
47
47
 
48
- Add to `~/.claude/settings.json` or project's `.claude/settings.local.json`:
48
+ ### Quick Setup
49
49
 
50
- ```json
51
- {
52
- "mcpServers": {
53
- "airbrake": {
54
- "command": "airbrake_mcp",
55
- "env": {
56
- "AIRBRAKE_USER_KEY": "your_user_key",
57
- "AIRBRAKE_PROJECT_ID": "123456"
58
- }
59
- }
60
- }
61
- }
50
+ ```bash
51
+ claude mcp add airbrake $(which airbrake_mcp) \
52
+ -e AIRBRAKE_USER_KEY=your_user_key \
53
+ -e AIRBRAKE_PROJECT_ID=123456
54
+ ```
55
+
56
+ ### Using rbenv/asdf/chruby
57
+
58
+ If you use a Ruby version manager, Claude Code runs in a non-interactive shell without access to your `.bashrc`/`.zshrc`. You need to provide the full path to the shim:
59
+
60
+ ```bash
61
+ # For rbenv
62
+ claude mcp add airbrake ~/.rbenv/shims/airbrake_mcp \
63
+ -e AIRBRAKE_USER_KEY=your_user_key \
64
+ -e AIRBRAKE_PROJECT_ID=123456
65
+
66
+ # For asdf
67
+ claude mcp add airbrake ~/.asdf/shims/airbrake_mcp \
68
+ -e AIRBRAKE_USER_KEY=your_user_key \
69
+ -e AIRBRAKE_PROJECT_ID=123456
70
+
71
+ # For chruby (use full gem path)
72
+ claude mcp add airbrake $(gem environment gemdir)/bin/airbrake_mcp \
73
+ -e AIRBRAKE_USER_KEY=your_user_key \
74
+ -e AIRBRAKE_PROJECT_ID=123456
62
75
  ```
63
76
 
64
- Or if installed from source:
77
+ ### Manual Configuration
78
+
79
+ Add to `~/.claude/settings.json` or project's `.claude/settings.local.json`:
65
80
 
66
81
  ```json
67
82
  {
68
83
  "mcpServers": {
69
84
  "airbrake": {
70
- "command": "/path/to/airbrake_mcp/exe/airbrake_mcp",
85
+ "command": "/full/path/to/airbrake_mcp",
86
+ "args": [],
71
87
  "env": {
72
88
  "AIRBRAKE_USER_KEY": "your_user_key",
73
89
  "AIRBRAKE_PROJECT_ID": "123456"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AirbrakeMcp
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbrake_mcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - httplab
8
- autorequire:
9
- bindir: exe
8
+ bindir: bin
10
9
  cert_chain: []
11
- date: 2026-01-05 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: faraday
@@ -92,7 +91,7 @@ files:
92
91
  - CHANGELOG.md
93
92
  - LICENSE
94
93
  - README.md
95
- - exe/airbrake_mcp
94
+ - bin/airbrake_mcp
96
95
  - lib/airbrake_mcp.rb
97
96
  - lib/airbrake_mcp/client.rb
98
97
  - lib/airbrake_mcp/formatters.rb
@@ -110,7 +109,6 @@ metadata:
110
109
  homepage_uri: https://github.com/httplab/airbrake_mcp
111
110
  source_code_uri: https://github.com/httplab/airbrake_mcp
112
111
  changelog_uri: https://github.com/httplab/airbrake_mcp/blob/master/CHANGELOG.md
113
- post_install_message:
114
112
  rdoc_options: []
115
113
  require_paths:
116
114
  - lib
@@ -125,8 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
123
  - !ruby/object:Gem::Version
126
124
  version: '0'
127
125
  requirements: []
128
- rubygems_version: 3.4.10
129
- signing_key:
126
+ rubygems_version: 4.0.3
130
127
  specification_version: 4
131
128
  summary: MCP server for Airbrake error tracking
132
129
  test_files: []
File without changes