@mcp-s/cli 0.0.9

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/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@mcp-s/cli",
3
+ "version": "0.0.9",
4
+ "description": "A lightweight CLI for interacting with MCP (Model Context Protocol) servers",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "mcp-s-cli": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "SKILL.md"
13
+ ],
14
+ "scripts": {
15
+ "dev": "tsx src/index.ts",
16
+ "build": "tsup",
17
+ "test": "vitest run",
18
+ "test:integration": "vitest run tests/integration --reporter=verbose",
19
+ "typecheck": "tsc --noEmit",
20
+ "lint": "npx @biomejs/biome check src/",
21
+ "lint:fix": "npx @biomejs/biome check --write src/",
22
+ "format": "npx @biomejs/biome format --write src/",
23
+ "prepublishOnly": "npm run build"
24
+ },
25
+ "dependencies": {
26
+ "@modelcontextprotocol/sdk": "^1.25.2"
27
+ },
28
+ "devDependencies": {
29
+ "@biomejs/biome": "^1.9.4",
30
+ "@types/node": "^20",
31
+ "tsup": "latest",
32
+ "tsx": "latest",
33
+ "typescript": "^5.9.3",
34
+ "vitest": "latest"
35
+ },
36
+ "keywords": [
37
+ "mcp",
38
+ "mcp-gateway",
39
+ "model-context-protocol",
40
+ "cli",
41
+ "ai",
42
+ "tools",
43
+ "agents"
44
+ ],
45
+ "author": "Idan Chetrit",
46
+ "license": "MIT",
47
+ "homepage": "https://webrix.ai",
48
+ "engines": {
49
+ "node": ">=18"
50
+ }
51
+ }