@leanmcp/cli 0.2.1 → 0.2.2
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 +22 -4
- package/dist/{index.js → index.mjs} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,14 +14,15 @@ Command-line tool for creating LeanMCP projects with production-ready templates.
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
|
-
### Global Installation (Recommended)
|
|
18
|
-
|
|
19
17
|
```bash
|
|
18
|
+
# npm
|
|
20
19
|
npm install -g @leanmcp/cli
|
|
21
|
-
```
|
|
22
20
|
|
|
23
|
-
|
|
21
|
+
# GitHub Packages
|
|
22
|
+
npm install -g @leanmcp/cli --registry=https://npm.pkg.github.com
|
|
23
|
+
```
|
|
24
24
|
|
|
25
|
+
Or use without installing:
|
|
25
26
|
```bash
|
|
26
27
|
npx @leanmcp/cli create my-mcp-server
|
|
27
28
|
```
|
|
@@ -393,6 +394,23 @@ Adds a new service to an existing project:
|
|
|
393
394
|
- Includes example Tool, Prompt, and Resource implementations
|
|
394
395
|
- Uses schema validation with `@SchemaConstraint` decorators
|
|
395
396
|
|
|
397
|
+
## 🌟 Showcase Your MCP Server
|
|
398
|
+
|
|
399
|
+
Built something cool with LeanMCP? We'd love to feature it!
|
|
400
|
+
|
|
401
|
+
### How to Get Featured
|
|
402
|
+
|
|
403
|
+
1. **Build** an awesome MCP server using LeanMCP
|
|
404
|
+
2. **Share** your project on GitHub
|
|
405
|
+
3. **Submit** for showcase:
|
|
406
|
+
- Open an issue: [Request Showcase](https://github.com/LeanMCP/leanmcp-sdk/issues/new?title=[Showcase]%20Your%20Project%20Name)
|
|
407
|
+
- Include:
|
|
408
|
+
- Project name and description
|
|
409
|
+
- GitHub repository link
|
|
410
|
+
- What makes it unique
|
|
411
|
+
- Screenshots or demo
|
|
412
|
+
|
|
413
|
+
|
|
396
414
|
## License
|
|
397
415
|
|
|
398
416
|
MIT
|