skylight-mcp 0.1.0-arm64-darwin

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dd479edd1823ed0d94417a09deeb73d0a5dec3742eba9e3ca0cc8f9b3504dbb1
4
+ data.tar.gz: 377502d77f7b4a5ca768b81b3f97a5e50ea45e0ba402e64c3dc72c78cd631cba
5
+ SHA512:
6
+ metadata.gz: abfbee4b5fcf706c0c77a29424766f43704c24464a07a0902303ffd5a322ccb9465d71e6fbccfd2254a5d8fc4163188e21bf16024f9a4a5744ad35024ae5554f
7
+ data.tar.gz: 6294e814aa57c33c7f0c286551aac043da02fba2667dfb2b52d47f2cd5a5a342efed8fdcc4934c5ae48521dab35e2826085d757a046b96fc4dd9a87b0df884ec
data/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # skylight-mcp
2
+
3
+ Skylight MCP server for AI-assisted performance investigation.
4
+
5
+ ## Install
6
+
7
+ gem install skylight-mcp
8
+
9
+ The correct platform variant is selected automatically. Supported platforms:
10
+
11
+ - arm64-darwin, x86_64-darwin
12
+ - x86_64-linux-gnu, aarch64-linux-gnu
13
+ - x86_64-linux-musl, aarch64-linux-musl
14
+ - x86_64-freebsd
15
+
16
+ Windows is not supported in this release. **Windows users: use WSL2**, which
17
+ looks like Linux to RubyGems and uses the `x86_64-linux-gnu` variant.
18
+
19
+ ## Wire up your AI client
20
+
21
+ After installing:
22
+
23
+ skylight-mcp init --token $SKYLIGHT_MCP_TOKEN
24
+
25
+ By default this prints both JSON (Claude Desktop, Cursor, Zed) and TOML
26
+ (Codex) config snippets — paste the relevant block into your harness
27
+ config.
28
+
29
+ For Claude Code, opt into delegated setup:
30
+
31
+ skylight-mcp init --harness claude_code --token $SKYLIGHT_MCP_TOKEN
32
+
33
+ This invokes `claude mcp add` for you (after confirmation), and works
34
+ with `CLAUDE_CONFIG_DIR` for multi-account setups.
35
+
36
+ ## Token
37
+
38
+ Visit https://www.skylight.io/app/settings/mcp to generate a token.
data/exe/skylight-mcp ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "rbconfig"
5
+ require "skylight/mcp/version"
6
+
7
+ binary = File.expand_path("../libexec/skylight-mcp", __dir__)
8
+
9
+ unless File.executable?(binary)
10
+ supported = %w[
11
+ arm64-darwin x86_64-darwin
12
+ x86_64-linux-gnu aarch64-linux-gnu
13
+ x86_64-linux-musl aarch64-linux-musl
14
+ x86_64-freebsd
15
+ ]
16
+ abort <<~MSG
17
+ skylight-mcp: no precompiled binary available for this platform
18
+ (Gem::Platform.local => #{Gem::Platform.local}).
19
+
20
+ Supported platforms:
21
+ #{supported.join(", ")}
22
+
23
+ Windows users: use WSL2 and install the x86_64-linux-gnu variant.
24
+
25
+ See https://rubygems.org/gems/skylight-mcp for details.
26
+ MSG
27
+ end
28
+
29
+ Kernel.exec(binary, *ARGV)
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Skylight
4
+ module MCP
5
+ # Must stay in lockstep with the Rust crate version in Cargo.toml.
6
+ # A CI job enforces this on every pull request.
7
+ VERSION = "0.1.0"
8
+ end
9
+ end
Binary file
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: skylight-mcp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: arm64-darwin
6
+ authors:
7
+ - Tilde, Inc.
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: |
13
+ skylight-mcp exposes Skylight application performance data to AI coding assistants
14
+ via the Model Context Protocol. Ships as a precompiled native binary per platform.
15
+ executables:
16
+ - skylight-mcp
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - exe/skylight-mcp
22
+ - lib/skylight/mcp/version.rb
23
+ - libexec/skylight-mcp
24
+ homepage: https://www.skylight.io
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ source_code_uri: https://github.com/tildeio/skylight-mcp
29
+ bug_tracker_uri: https://github.com/tildeio/skylight-mcp/issues
30
+ rubygems_mfa_required: 'true'
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '3.0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '3.3'
44
+ requirements: []
45
+ rubygems_version: 3.6.9
46
+ specification_version: 4
47
+ summary: Skylight MCP server for AI-assisted performance investigation
48
+ test_files: []