@ancientwhispers54/leafengines-mcp-server 1.1.2 → 1.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.
- package/README.md +15 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# LeafEngines MCP Server
|
|
2
2
|
|
|
3
|
-
[](https://registry.modelcontextprotocol.io
|
|
4
|
-
[](https://registry.modelcontextprotocol.io)
|
|
4
|
+
[](https://www.npmjs.com/package/@ancientwhispers54/leafengines-mcp-server)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
7
|
Agricultural intelligence MCP server with soil analysis, crop recommendations, weather forecasts, and environmental impact assessment.
|
|
@@ -19,11 +19,14 @@ Agricultural intelligence MCP server with soil analysis, crop recommendations, w
|
|
|
19
19
|
### Installation
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
# Install globally
|
|
23
|
-
npm install -g @
|
|
22
|
+
# Install globally (recommended)
|
|
23
|
+
npm install -g @ancientwhispers54/leafengines-mcp-server
|
|
24
24
|
|
|
25
|
-
#
|
|
26
|
-
|
|
25
|
+
# Run the server
|
|
26
|
+
leafengines-mcp-server
|
|
27
|
+
|
|
28
|
+
# Or use npx (alternative)
|
|
29
|
+
npx @ancientwhispers54/leafengines-mcp-server
|
|
27
30
|
```
|
|
28
31
|
|
|
29
32
|
### Configuration
|
|
@@ -42,8 +45,7 @@ Add to your Claude Desktop `mcp.json`:
|
|
|
42
45
|
{
|
|
43
46
|
"mcpServers": {
|
|
44
47
|
"leafengines": {
|
|
45
|
-
"command": "
|
|
46
|
-
"args": ["-y", "@modelcontextprotocol/server-leafengines"],
|
|
48
|
+
"command": "leafengines-mcp-server",
|
|
47
49
|
"env": {
|
|
48
50
|
"LEAFENGINES_API_KEY": "your_api_key_here"
|
|
49
51
|
}
|
|
@@ -126,7 +128,7 @@ Get API key: [https://app.soilsidekickpro.com/api-docs](https://app.soilsidekick
|
|
|
126
128
|
```bash
|
|
127
129
|
# Clone repository
|
|
128
130
|
git clone https://github.com/QWarranto/leafengines-claude-mcp.git
|
|
129
|
-
cd leafengines-claude-mcp
|
|
131
|
+
cd leafengines-claude-mcp/leafengines-mcp-server
|
|
130
132
|
|
|
131
133
|
# Install dependencies
|
|
132
134
|
npm install
|
|
@@ -149,7 +151,7 @@ LEAFENGINES_API_KEY="your_key" npm start
|
|
|
149
151
|
|
|
150
152
|
- **API Documentation:** [https://app.soilsidekickpro.com/api-docs](https://app.soilsidekickpro.com/api-docs)
|
|
151
153
|
- **GitHub Repository:** [https://github.com/QWarranto/leafengines-claude-mcp](https://github.com/QWarranto/leafengines-claude-mcp)
|
|
152
|
-
- **MCP Registry:** [https://registry.modelcontextprotocol.io
|
|
154
|
+
- **MCP Registry:** Search for "io.github.QWarranto/leafengines" at [https://registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io)
|
|
153
155
|
|
|
154
156
|
## 🆓 Try It Free!
|
|
155
157
|
|
|
@@ -157,8 +159,8 @@ The `turbo_quant_capabilities` tool is completely free - no API key or payment r
|
|
|
157
159
|
|
|
158
160
|
```bash
|
|
159
161
|
# Test the FREE tool
|
|
160
|
-
|
|
161
|
-
# Then
|
|
162
|
+
leafengines-mcp-server
|
|
163
|
+
# Then in Claude Desktop, ask: "Check TurboQuant capabilities"
|
|
162
164
|
```
|
|
163
165
|
|
|
164
166
|
## 🤝 Contributing
|
|
@@ -174,7 +176,7 @@ Apache 2.0 - See [LICENSE](LICENSE) for details.
|
|
|
174
176
|
- **Website:** [https://soilsidekickpro.com](https://soilsidekickpro.com)
|
|
175
177
|
- **API Docs:** [https://app.soilsidekickpro.com/api-docs](https://app.soilsidekickpro.com/api-docs)
|
|
176
178
|
- **GitHub:** [https://github.com/QWarranto/leafengines-claude-mcp](https://github.com/QWarranto/leafengines-claude-mcp)
|
|
177
|
-
- **MCP Registry:** [https://registry.modelcontextprotocol.io
|
|
179
|
+
- **MCP Registry:** Search for "io.github.QWarranto/leafengines" at [https://registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io)
|
|
178
180
|
|
|
179
181
|
---
|
|
180
182
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ancientwhispers54/leafengines-mcp-server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"mcpName": "io.github.QWarranto/leafengines",
|
|
5
5
|
"description": "Agricultural intelligence MCP server with soil analysis, crop recommendations, weather forecasts, and environmental impact assessment.",
|
|
6
6
|
"main": "dist/index.js",
|