shellsage-mcp-server-kit 1.0.0
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.
- package/README.md +25 -0
- package/index.js +20 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# shellsage-mcp-server-kit
|
|
2
|
+
|
|
3
|
+
> Production-ready MCP server templates for TypeScript and Python. Docker setup, GitHub Actions CI, resource/tool scaffolding.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install shellsage-mcp-server-kit
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
require('shellsage-mcp-server-kit');
|
|
15
|
+
// Prints product info and link to full digital download
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Full Product
|
|
19
|
+
|
|
20
|
+
The complete version includes all files, templates, and documentation:
|
|
21
|
+
👉 **https://jamiesupply.gumroad.com/l/taboxe**
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
*Made by [ShellSage AI](https://github.com/shellsage-ai) — developer tools for AI agent builders.*
|
package/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
/**
|
|
3
|
+
* shellsage-mcp-server-kit — ShellSage AI thin wrapper
|
|
4
|
+
* Install: npm install shellsage-mcp-server-kit
|
|
5
|
+
* Full product: https://jamiesupply.gumroad.com/l/taboxe
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
console.log(`
|
|
9
|
+
╔═══════════════════════════════════════════════════╗
|
|
10
|
+
║ shellsage-mcp-server-kit ║
|
|
11
|
+
║ by ShellSage AI ║
|
|
12
|
+
╠═══════════════════════════════════════════════════╣
|
|
13
|
+
║ Production-ready MCP server templates for TypeScr ║
|
|
14
|
+
║ ipt and Python. Docker setup, GitHub Actions CI, ║
|
|
15
|
+
╠═══════════════════════════════════════════════════╣
|
|
16
|
+
║ ► Full product & download: https://jamiesupply.g ║
|
|
17
|
+
╚═══════════════════════════════════════════════════╝
|
|
18
|
+
`);
|
|
19
|
+
|
|
20
|
+
module.exports = { productUrl: 'https://jamiesupply.gumroad.com/l/taboxe', name: 'shellsage-mcp-server-kit' };
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shellsage-mcp-server-kit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Production-ready MCP server templates for TypeScript and Python. Docker setup, GitHub Actions CI, resource/tool scaffolding.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"boilerplate",
|
|
9
|
+
"claude",
|
|
10
|
+
"typescript"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://jamiesupply.gumroad.com/l/taboxe",
|
|
13
|
+
"main": "index.js",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"test": "node index.js"
|
|
16
|
+
},
|
|
17
|
+
"author": "ShellSage AI <jamiessupplycompany@yahoo.com>",
|
|
18
|
+
"license": "ISC",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/shellsage-ai"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=16"
|
|
25
|
+
}
|
|
26
|
+
}
|