@jtsang/nettune-mcp 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +186 -0
  2. package/dist/index.js +2190 -0
  3. package/package.json +49 -0
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@jtsang/nettune-mcp",
3
+ "version": "0.0.1",
4
+ "private": false,
5
+ "description": "MCP stdio wrapper for nettune - TCP network optimization tool",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "bin": {
9
+ "nettune-mcp": "./dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md"
14
+ ],
15
+ "scripts": {
16
+ "build": "bun build src/index.ts --outdir dist --target node --format esm && echo '#!/usr/bin/env node' | cat - dist/index.js > dist/tmp && mv dist/tmp dist/index.js && chmod +x dist/index.js",
17
+ "dev": "bun run src/index.ts",
18
+ "test": "bun test",
19
+ "typecheck": "tsc --noEmit",
20
+ "prepublishOnly": "bun run build"
21
+ },
22
+ "keywords": [
23
+ "nettune",
24
+ "mcp",
25
+ "tcp",
26
+ "network",
27
+ "optimization",
28
+ "bbr",
29
+ "cli"
30
+ ],
31
+ "author": "jtsang4",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/jtsang4/nettune.git",
36
+ "directory": "js"
37
+ },
38
+ "engines": {
39
+ "node": ">=18.0.0"
40
+ },
41
+ "dependencies": {
42
+ "commander": "^12.1.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/bun": "^1.3.3",
46
+ "@types/node": "^22.10.1",
47
+ "typescript": "^5.7.2"
48
+ }
49
+ }