skylight-mcp 0.1.0-x86_64-linux-gnu

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: 39f0d33716b173d6669324f80abba2aa1bec47bbbd807f201ad7cb26654ea770
4
+ data.tar.gz: 2f783415561def0fe52cba9952d78526b9229009256961fe17d36c7685134b70
5
+ SHA512:
6
+ metadata.gz: 471cedb77a665d05b13f829f60f9f49aa2ec089a405558fd113028f260311d4a34e9b6bce945d88008d1968e59a3d04a28c7deddc27ba5aacc5e72ba0d031954
7
+ data.tar.gz: 32136c83be0b2c41496307058b84c5794300e4bc8bdecb953dd5aca51a15f4223d063258f2ea132127459e66bf0336b6cd607d96d29e0eff9e0ed4b208056897
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,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: skylight-mcp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: x86_64-linux-gnu
6
+ authors:
7
+ - Tilde, Inc.
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-04-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ skylight-mcp exposes Skylight application performance data to AI coding assistants
15
+ via the Model Context Protocol. Ships as a precompiled native binary per platform.
16
+ email:
17
+ executables:
18
+ - skylight-mcp
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - README.md
23
+ - exe/skylight-mcp
24
+ - lib/skylight/mcp/version.rb
25
+ - libexec/skylight-mcp
26
+ homepage: https://www.skylight.io
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ source_code_uri: https://github.com/tildeio/skylight-mcp
31
+ bug_tracker_uri: https://github.com/tildeio/skylight-mcp/issues
32
+ rubygems_mfa_required: 'true'
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '3.0'
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '3.3'
47
+ requirements: []
48
+ rubygems_version: 3.5.22
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Skylight MCP server for AI-assisted performance investigation
52
+ test_files: []