@airmcp-dev/cli 0.1.3 → 0.1.4

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 (2) hide show
  1. package/README.md +46 -0
  2. package/package.json +17 -11
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # @airmcp-dev/cli
2
+
3
+ CLI for building, running, and managing air MCP servers.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @airmcp-dev/cli
9
+ # or use npx
10
+ npx @airmcp-dev/cli create my-server
11
+ ```
12
+
13
+ ## Commands
14
+
15
+ ```
16
+ airmcp-dev create <name> Create a new MCP server project
17
+ airmcp-dev dev [--console] Dev mode with hot reload
18
+ airmcp-dev start Production mode (background)
19
+ airmcp-dev stop Stop server
20
+ airmcp-dev status Show running servers
21
+ airmcp-dev list List tools/resources/prompts
22
+ airmcp-dev inspect <tool> Inspect tool schema
23
+ airmcp-dev connect <client> Register with Claude Desktop, Cursor, VS Code
24
+ airmcp-dev disconnect <client> Unregister
25
+ airmcp-dev check Diagnose project health
26
+ ```
27
+
28
+ ## Quick Start
29
+
30
+ ```bash
31
+ npx @airmcp-dev/cli create my-server --template basic
32
+ cd my-server && npm install
33
+ npx @airmcp-dev/cli dev --console -p 3510
34
+ ```
35
+
36
+ ## Supported Clients
37
+
38
+ claude-desktop, claude-code, cursor, vscode, chatgpt, ollama, vllm, lm-studio
39
+
40
+ ## Documentation
41
+
42
+ Full docs: **[docs.airmcp.dev](https://docs.airmcp.dev)**
43
+
44
+ ## License
45
+
46
+ Apache-2.0 — [GitHub](https://github.com/airmcp-dev/air)
package/package.json CHANGED
@@ -1,16 +1,19 @@
1
1
  {
2
2
  "name": "@airmcp-dev/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "CLI for air — build, run, and manage MCP servers",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "airmcp-dev": "./dist/index.js"
8
8
  },
9
9
  "main": "dist/index.js",
10
- "files": [
11
- "dist",
12
- "templates"
13
- ],
10
+ "files": ["dist", "templates", "README.md", "LICENSE"],
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js"
15
+ }
16
+ },
14
17
  "scripts": {
15
18
  "build": "tsc && rm -rf dist/templates && cp -r src/templates dist/templates",
16
19
  "dev": "tsc --watch",
@@ -18,7 +21,7 @@
18
21
  "lint": "tsc --noEmit"
19
22
  },
20
23
  "dependencies": {
21
- "@airmcp-dev/core": "^0.1.3",
24
+ "@airmcp-dev/core": "^0.1.4",
22
25
  "@modelcontextprotocol/sdk": "^1.29.0",
23
26
  "commander": "^12.1.0",
24
27
  "chalk": "^5.3.0"
@@ -36,17 +39,20 @@
36
39
  "cli",
37
40
  "model-context-protocol",
38
41
  "ai",
39
- "tool-server"
42
+ "agent",
43
+ "tool-server",
44
+ "claude",
45
+ "cursor"
40
46
  ],
41
47
  "author": "CodePedia Labs",
42
- "homepage": "https://airmcp.dev",
43
- "bugs": { "url": "https://github.com/airmcp-dev/air/issues" },
44
- "repository": { "type": "git", "url": "https://github.com/airmcp-dev/air", "directory": "packages/cli" },
45
- "keywords": ["mcp", "ai", "agent", "air"],
46
48
  "license": "Apache-2.0",
49
+ "homepage": "https://docs.airmcp.dev",
47
50
  "repository": {
48
51
  "type": "git",
49
52
  "url": "https://github.com/airmcp-dev/air",
50
53
  "directory": "packages/cli"
54
+ },
55
+ "bugs": {
56
+ "url": "https://github.com/airmcp-dev/air/issues"
51
57
  }
52
58
  }