skylight-mcp 0.1.0-aarch64-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 +7 -0
- data/README.md +38 -0
- data/exe/skylight-mcp +29 -0
- data/lib/skylight/mcp/version.rb +9 -0
- data/libexec/skylight-mcp +0 -0
- metadata +52 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 69d8749a7ec9856735c6d39a11180876e7c2a97a72f122defe73c746bec83b9d
|
|
4
|
+
data.tar.gz: 7b035d26b750f232a367fbd87a7c2b2adec224732464fcbcdf4ffb567ad89f06
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 8941c0c81cce827dbdcb790860a618892648f0a8b31601ab47330085d8ff8d9f6fd5382ae7489ca854ef07a1192063ed63c047aa0aa731661a83cafe5eee7a8e
|
|
7
|
+
data.tar.gz: c64cbc0040bb365128570bfd6b64ce40320e24f5d6a9e126a6980ab46e5f6b7049b1e89adf598f4b8364efd68bb60acbca70dc35047de01f207dc63e1f1ba223
|
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)
|
|
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: aarch64-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: []
|