skylight-mcp 0.1.0.pre.1-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 +7 -0
- data/README.md +32 -0
- data/exe/skylight-mcp +29 -0
- data/lib/skylight/mcp/version.rb +10 -0
- data/libexec/skylight-mcp +0 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b41e0d981e5bd425ab3034a03f138552da314f6369325240ec6e97fcc4fc67d5
|
|
4
|
+
data.tar.gz: 3a46d56e8e8bb19617444f9d2f3174b6be6da74c2e6df3512415d0952cfb086f
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 291c68b099a390b56c5f1dd928209bd430b4d5e25af2213c1c396b35e3d8b54747b852d511d8dd1779ce39142880c5f3a79116e5d1a578048b0a51cde13063b0
|
|
7
|
+
data.tar.gz: 81d76a67be78d780b2bc22f18f98bd7721bee3b71b635a288c5db47c94f1e06f4860d90492ff06d3caab802db0bc710c6bbf2e23802999f66f0f94e456f376be
|
data/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
The default harness is Claude Code; `skylight-mcp init` delegates to
|
|
26
|
+
`claude mcp add` so it works with `CLAUDE_CONFIG_DIR` and multi-account
|
|
27
|
+
setups. Use `--harness manual` to print a paste-ready config snippet
|
|
28
|
+
for other harnesses (Cursor, Zed, Claude Desktop, etc.).
|
|
29
|
+
|
|
30
|
+
## Token
|
|
31
|
+
|
|
32
|
+
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,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Skylight
|
|
4
|
+
module MCP
|
|
5
|
+
# Normally kept in lockstep with the Rust crate version in Cargo.toml.
|
|
6
|
+
# Temporarily diverged during prerelease testing (Rust at 0.1.0, gem at
|
|
7
|
+
# 0.1.0.pre.1) because Cargo and RubyGems use different prerelease syntax.
|
|
8
|
+
VERSION = "0.1.0.pre.1"
|
|
9
|
+
end
|
|
10
|
+
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.pre.1
|
|
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: []
|