skyboy-mcp 0.1.0__tar.gz

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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Skyboy project contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: skyboy-mcp
3
+ Version: 0.1.0
4
+ Summary: PyPI wrapper for the Skyboy MCP server. Runs the npm core via npx at runtime.
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://skyboy.in
7
+ Project-URL: Source, https://github.com/aijadugar/skyboy
8
+ Keywords: skills,claude,cursor,mcp,model-context-protocol,skyboy,cli
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Topic :: Software Development :: Libraries
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
15
+
16
+ # skyboy-mcp (PyPI)
17
+
18
+ A thin PyPI wrapper for the Skyboy MCP server. The server itself is implemented
19
+ once in TypeScript (`@skyboy/mcp-server`) and published on npm. This package
20
+ runs that same core for Python users: it checks that Node.js is present, then
21
+ hands off to `npx -y @skyboy/mcp-server`.
22
+
23
+ ## Install
24
+
25
+ ```bash
26
+ pipx install skyboy-mcp
27
+ # or
28
+ pip install skyboy-mcp
29
+ ```
30
+
31
+ ## Usage
32
+
33
+ ```bash
34
+ skyboy-mcp
35
+ ```
36
+
37
+ This starts the stdio MCP server locally. Point an MCP-compatible agent at it
38
+ with the `stdio` transport:
39
+
40
+ ```json
41
+ {
42
+ "mcpServers": {
43
+ "skyboy": {
44
+ "command": "skyboy-mcp",
45
+ "type": "stdio"
46
+ }
47
+ }
48
+ }
49
+ ```
50
+
51
+ ## Node-at-runtime
52
+
53
+ This package shells out to `npx`, so **Node.js must be on your PATH**. It does
54
+ not ship a pure-Python MCP implementation. That is deliberate: the brief
55
+ specifies one MCP core (TypeScript) with a PyPI wrapper so Python users reach
56
+ the same tools without a second implementation to maintain.
57
+
58
+ If you would rather avoid the wrapper, install the npm core directly:
59
+
60
+ ```bash
61
+ npm install -g @skyboy/mcp-server
62
+ ```
63
+
64
+ ## Tool surface (stdio, full mode)
65
+
66
+ - `search_skills(query, category?, agent?)` - fuzzy search slug/name/description/tags
67
+ - `get_skill(slug)` - SKILL.md + metadata + permissions
68
+ - `get_plugin(slug)` - plugin manifest + permissions (index + link only, never vendor-copied)
69
+ - `list_categories()` - taxonomy tree
70
+ - `check_updates(installed_slugs[])` - compare installed versions to the catalog
71
+ - `install_skill(slug, target_dir?)` - write skill files to a local folder (stdio only)
72
+
73
+ The hosted remote endpoint (`https://mcp.skyboy.in`) exposes only the read-only
74
+ tools (search, get, list, check_updates); `install_skill` is local-only because
75
+ it writes to your filesystem.
76
+
77
+ ## License
78
+
79
+ MIT
@@ -0,0 +1,64 @@
1
+ # skyboy-mcp (PyPI)
2
+
3
+ A thin PyPI wrapper for the Skyboy MCP server. The server itself is implemented
4
+ once in TypeScript (`@skyboy/mcp-server`) and published on npm. This package
5
+ runs that same core for Python users: it checks that Node.js is present, then
6
+ hands off to `npx -y @skyboy/mcp-server`.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ pipx install skyboy-mcp
12
+ # or
13
+ pip install skyboy-mcp
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ```bash
19
+ skyboy-mcp
20
+ ```
21
+
22
+ This starts the stdio MCP server locally. Point an MCP-compatible agent at it
23
+ with the `stdio` transport:
24
+
25
+ ```json
26
+ {
27
+ "mcpServers": {
28
+ "skyboy": {
29
+ "command": "skyboy-mcp",
30
+ "type": "stdio"
31
+ }
32
+ }
33
+ }
34
+ ```
35
+
36
+ ## Node-at-runtime
37
+
38
+ This package shells out to `npx`, so **Node.js must be on your PATH**. It does
39
+ not ship a pure-Python MCP implementation. That is deliberate: the brief
40
+ specifies one MCP core (TypeScript) with a PyPI wrapper so Python users reach
41
+ the same tools without a second implementation to maintain.
42
+
43
+ If you would rather avoid the wrapper, install the npm core directly:
44
+
45
+ ```bash
46
+ npm install -g @skyboy/mcp-server
47
+ ```
48
+
49
+ ## Tool surface (stdio, full mode)
50
+
51
+ - `search_skills(query, category?, agent?)` - fuzzy search slug/name/description/tags
52
+ - `get_skill(slug)` - SKILL.md + metadata + permissions
53
+ - `get_plugin(slug)` - plugin manifest + permissions (index + link only, never vendor-copied)
54
+ - `list_categories()` - taxonomy tree
55
+ - `check_updates(installed_slugs[])` - compare installed versions to the catalog
56
+ - `install_skill(slug, target_dir?)` - write skill files to a local folder (stdio only)
57
+
58
+ The hosted remote endpoint (`https://mcp.skyboy.in`) exposes only the read-only
59
+ tools (search, get, list, check_updates); `install_skill` is local-only because
60
+ it writes to your filesystem.
61
+
62
+ ## License
63
+
64
+ MIT
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "skyboy-mcp"
7
+ version = "0.1.0"
8
+ description = "PyPI wrapper for the Skyboy MCP server. Runs the npm core via npx at runtime."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ keywords = ["skills", "claude", "cursor", "mcp", "model-context-protocol", "skyboy", "cli"]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Topic :: Software Development :: Libraries",
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://skyboy.in"
21
+ Source = "https://github.com/aijadugar/skyboy"
22
+
23
+ [project.scripts]
24
+ skyboy-mcp = "skyboy_mcp.__main__:main"
25
+
26
+ [tool.setuptools]
27
+ packages = ["skyboy_mcp"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ # __init__.py
@@ -0,0 +1,39 @@
1
+ """skyboy-mcp: thin PyPI wrapper around the Skyboy MCP server (npm core).
2
+
3
+ The full Skyboy MCP server is implemented once in TypeScript
4
+ (`@skyboy/mcp-server` under packages/mcp) and published on npm. Python-side
5
+ users get the same core by running it with npx. This wrapper is a thin shim: it
6
+ checks that Node.js is present, then hands off to `npx -y @skyboy/mcp-server`.
7
+
8
+ Node-at-runtime requirement
9
+ ---------------------------
10
+ This package shells out to `npx`, so Node.js must be on PATH. It does not ship a
11
+ pure-Python MCP implementation. For a Python-native server, install the npm
12
+ package directly:
13
+
14
+ npm install -g @skyboy/mcp-server
15
+
16
+ or run via npx (which this wrapper does):
17
+ """
18
+
19
+ import shutil
20
+ import subprocess
21
+ import sys
22
+
23
+
24
+ def main(argv=None):
25
+ if shutil.which("node") is None:
26
+ print(
27
+ "skyboy-mcp: Node.js is required at runtime. This PyPI package is a "
28
+ "thin wrapper that runs the Skyboy MCP server via npx; install Node "
29
+ "first (https://nodejs.org) or use the npm package directly:\n"
30
+ " npm install -g @skyboy/mcp-server",
31
+ file=sys.stderr,
32
+ )
33
+ return 1
34
+ # Hand off to the npm core. `-y` avoids the interactive npx install prompt.
35
+ return subprocess.call(["npx", "-y", "@skyboy/mcp-server"] + (list(argv) if argv else []))
36
+
37
+
38
+ if __name__ == "__main__":
39
+ sys.exit(main())
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: skyboy-mcp
3
+ Version: 0.1.0
4
+ Summary: PyPI wrapper for the Skyboy MCP server. Runs the npm core via npx at runtime.
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://skyboy.in
7
+ Project-URL: Source, https://github.com/aijadugar/skyboy
8
+ Keywords: skills,claude,cursor,mcp,model-context-protocol,skyboy,cli
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Topic :: Software Development :: Libraries
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
15
+
16
+ # skyboy-mcp (PyPI)
17
+
18
+ A thin PyPI wrapper for the Skyboy MCP server. The server itself is implemented
19
+ once in TypeScript (`@skyboy/mcp-server`) and published on npm. This package
20
+ runs that same core for Python users: it checks that Node.js is present, then
21
+ hands off to `npx -y @skyboy/mcp-server`.
22
+
23
+ ## Install
24
+
25
+ ```bash
26
+ pipx install skyboy-mcp
27
+ # or
28
+ pip install skyboy-mcp
29
+ ```
30
+
31
+ ## Usage
32
+
33
+ ```bash
34
+ skyboy-mcp
35
+ ```
36
+
37
+ This starts the stdio MCP server locally. Point an MCP-compatible agent at it
38
+ with the `stdio` transport:
39
+
40
+ ```json
41
+ {
42
+ "mcpServers": {
43
+ "skyboy": {
44
+ "command": "skyboy-mcp",
45
+ "type": "stdio"
46
+ }
47
+ }
48
+ }
49
+ ```
50
+
51
+ ## Node-at-runtime
52
+
53
+ This package shells out to `npx`, so **Node.js must be on your PATH**. It does
54
+ not ship a pure-Python MCP implementation. That is deliberate: the brief
55
+ specifies one MCP core (TypeScript) with a PyPI wrapper so Python users reach
56
+ the same tools without a second implementation to maintain.
57
+
58
+ If you would rather avoid the wrapper, install the npm core directly:
59
+
60
+ ```bash
61
+ npm install -g @skyboy/mcp-server
62
+ ```
63
+
64
+ ## Tool surface (stdio, full mode)
65
+
66
+ - `search_skills(query, category?, agent?)` - fuzzy search slug/name/description/tags
67
+ - `get_skill(slug)` - SKILL.md + metadata + permissions
68
+ - `get_plugin(slug)` - plugin manifest + permissions (index + link only, never vendor-copied)
69
+ - `list_categories()` - taxonomy tree
70
+ - `check_updates(installed_slugs[])` - compare installed versions to the catalog
71
+ - `install_skill(slug, target_dir?)` - write skill files to a local folder (stdio only)
72
+
73
+ The hosted remote endpoint (`https://mcp.skyboy.in`) exposes only the read-only
74
+ tools (search, get, list, check_updates); `install_skill` is local-only because
75
+ it writes to your filesystem.
76
+
77
+ ## License
78
+
79
+ MIT
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ skyboy_mcp/__init__.py
5
+ skyboy_mcp/__main__.py
6
+ skyboy_mcp.egg-info/PKG-INFO
7
+ skyboy_mcp.egg-info/SOURCES.txt
8
+ skyboy_mcp.egg-info/dependency_links.txt
9
+ skyboy_mcp.egg-info/entry_points.txt
10
+ skyboy_mcp.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ skyboy-mcp = skyboy_mcp.__main__:main
@@ -0,0 +1 @@
1
+ skyboy_mcp