@ancientwhispers54/leafengines-mcp-server 1.1.6 ā 1.1.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/CONTRIBUTING.md +1 -0
- package/README.md +105 -127
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +43 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CONTRIBUTING.md
CHANGED
|
@@ -124,6 +124,7 @@ Harassment of any kind will not be tolerated, including:
|
|
|
124
124
|
- [npm Package](https://www.npmjs.com/package/@ancientwhispers54/leafengines-mcp-server)
|
|
125
125
|
- [MCP Registry](https://registry.modelcontextprotocol.io)
|
|
126
126
|
- [LeafEngines API Documentation](https://app.soilsidekickpro.com/api-docs)
|
|
127
|
+
- [MCP Documentation](https://app.soilsidekickpro.com/mcp)
|
|
127
128
|
- [Model Context Protocol Documentation](https://spec.modelcontextprotocol.io)
|
|
128
129
|
|
|
129
130
|
## š Getting Help
|
package/README.md
CHANGED
|
@@ -1,183 +1,161 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @ancientwhispers54/leafengines-mcp-server
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[](https://www.npmjs.com/package/@ancientwhispers54/leafengines-mcp-server)
|
|
5
|
-
[](LICENSE)
|
|
3
|
+
LeafEngines MCP Server - Agricultural intelligence for AI agents
|
|
6
4
|
|
|
7
|
-
|
|
5
|
+
## šÆ What is MCP?
|
|
8
6
|
|
|
9
|
-
|
|
7
|
+
**Model Context Protocol (MCP)** is a standard for connecting AI assistants to external data sources and tools. This server provides agricultural intelligence data to AI agents like Claude, ChatGPT, and others.
|
|
10
8
|
|
|
11
|
-
|
|
12
|
-
- **Crop Recommendations** - Optimal crop selection based on soil and climate
|
|
13
|
-
- **Weather Forecasts** - Agricultural weather data for planning
|
|
14
|
-
- **Environmental Impact** - Carbon footprint, water usage, sustainability analysis
|
|
15
|
-
- **TurboQuant Capabilities** - FREE hardware optimization check (no API key required)
|
|
9
|
+
## ⨠Features
|
|
16
10
|
|
|
17
|
-
|
|
11
|
+
- **Soil Intelligence:** USDA soil data analysis
|
|
12
|
+
- **Water Quality:** EPA monitoring data
|
|
13
|
+
- **Climate Insights:** NOAA historical records
|
|
14
|
+
- **Agricultural Recommendations:** Location-specific advice
|
|
15
|
+
- **AI-Native:** Built specifically for AI agent consumption
|
|
18
16
|
|
|
19
|
-
|
|
17
|
+
## š¦ Installation
|
|
20
18
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
### Prerequisites
|
|
20
|
+
- Node.js 18 or higher
|
|
21
|
+
- An MCP-compatible AI assistant (Claude Desktop, Cursor, etc.)
|
|
24
22
|
|
|
25
|
-
|
|
26
|
-
leafengines-mcp-server
|
|
23
|
+
### Install the Server
|
|
27
24
|
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
```bash
|
|
26
|
+
npm install -g @ancientwhispers54/leafengines-mcp-server
|
|
30
27
|
```
|
|
31
28
|
|
|
32
|
-
###
|
|
29
|
+
### Or use as dependency
|
|
33
30
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export LEAFENGINES_API_KEY="your_api_key_here"
|
|
38
|
-
```
|
|
31
|
+
```bash
|
|
32
|
+
npm install @ancientwhispers54/leafengines-mcp-server
|
|
33
|
+
```
|
|
39
34
|
|
|
40
|
-
|
|
35
|
+
## š Quick Start
|
|
41
36
|
|
|
42
|
-
|
|
37
|
+
### 1. Configure Your AI Assistant
|
|
43
38
|
|
|
39
|
+
**For Claude Desktop:**
|
|
44
40
|
```json
|
|
45
41
|
{
|
|
46
42
|
"mcpServers": {
|
|
47
43
|
"leafengines": {
|
|
48
|
-
"command": "
|
|
49
|
-
"
|
|
50
|
-
"LEAFENGINES_API_KEY": "your_api_key_here"
|
|
51
|
-
}
|
|
44
|
+
"command": "npx",
|
|
45
|
+
"args": ["@ancientwhispers54/leafengines-mcp-server"]
|
|
52
46
|
}
|
|
53
47
|
}
|
|
54
48
|
}
|
|
55
49
|
```
|
|
56
50
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
### 1. `turbo_quant_capabilities` (FREE)
|
|
60
|
-
Check TurboQuant optimization status and hardware compatibility.
|
|
51
|
+
**For Cursor:**
|
|
52
|
+
Add to your Cursor MCP configuration.
|
|
61
53
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
```json
|
|
65
|
-
{
|
|
66
|
-
"check_hardware": true,
|
|
67
|
-
"get_optimization_status": true
|
|
68
|
-
}
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
### 2. `soil_analysis`
|
|
72
|
-
Analyze soil composition and provide agricultural recommendations.
|
|
73
|
-
|
|
74
|
-
```json
|
|
75
|
-
{
|
|
76
|
-
"latitude": 33.7490,
|
|
77
|
-
"longitude": -84.3880,
|
|
78
|
-
"soil_type": "loam"
|
|
79
|
-
}
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
### 3. `weather_forecast`
|
|
83
|
-
Get weather forecast for agricultural planning.
|
|
84
|
-
|
|
85
|
-
```json
|
|
86
|
-
{
|
|
87
|
-
"latitude": 33.7490,
|
|
88
|
-
"longitude": -84.3880,
|
|
89
|
-
"days": 3
|
|
90
|
-
}
|
|
91
|
-
```
|
|
54
|
+
### 2. Start Using
|
|
92
55
|
|
|
93
|
-
|
|
94
|
-
|
|
56
|
+
Your AI assistant now has access to:
|
|
57
|
+
- Soil analysis tools
|
|
58
|
+
- Water quality data
|
|
59
|
+
- Climate information
|
|
60
|
+
- Agricultural intelligence
|
|
95
61
|
|
|
96
|
-
|
|
97
|
-
{
|
|
98
|
-
"latitude": 33.7490,
|
|
99
|
-
"longitude": -84.3880,
|
|
100
|
-
"season": "spring"
|
|
101
|
-
}
|
|
102
|
-
```
|
|
62
|
+
## š§ Available Tools
|
|
103
63
|
|
|
104
|
-
###
|
|
105
|
-
|
|
64
|
+
### `get_soil_analysis`
|
|
65
|
+
Get comprehensive soil data for any location.
|
|
106
66
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"crop_type": "corn",
|
|
112
|
-
"farming_practice": "organic"
|
|
113
|
-
}
|
|
114
|
-
```
|
|
67
|
+
**Parameters:**
|
|
68
|
+
- `latitude` (number): Location latitude
|
|
69
|
+
- `longitude` (number): Location longitude
|
|
70
|
+
- `depth` (string, optional): Soil depth (default: "0-30cm")
|
|
115
71
|
|
|
116
|
-
|
|
72
|
+
### `get_water_quality`
|
|
73
|
+
Retrieve EPA water quality data.
|
|
117
74
|
|
|
118
|
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
75
|
+
**Parameters:**
|
|
76
|
+
- `county` (string): County name
|
|
77
|
+
- `state` (string): State abbreviation
|
|
121
78
|
|
|
122
|
-
|
|
79
|
+
### `get_climate_insights`
|
|
80
|
+
Access NOAA climate data and trends.
|
|
123
81
|
|
|
124
|
-
|
|
82
|
+
**Parameters:**
|
|
83
|
+
- `location` (string): City or coordinates
|
|
84
|
+
- `timeframe` (string): "30day", "year", "historical"
|
|
125
85
|
|
|
126
|
-
###
|
|
86
|
+
### `get_agricultural_recommendations`
|
|
87
|
+
Get farm-specific advice.
|
|
127
88
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
89
|
+
**Parameters:**
|
|
90
|
+
- `crop` (string): Crop type
|
|
91
|
+
- `location` (string): Growing location
|
|
92
|
+
- `season` (string): Planting season
|
|
132
93
|
|
|
133
|
-
|
|
134
|
-
npm install
|
|
94
|
+
## š Examples
|
|
135
95
|
|
|
136
|
-
|
|
137
|
-
|
|
96
|
+
### Example 1: Soil Analysis via AI
|
|
97
|
+
```
|
|
98
|
+
User: "What's the soil like in Fulton County, Georgia?"
|
|
99
|
+
AI: [Uses get_soil_analysis] "The soil in Fulton County is primarily..."
|
|
100
|
+
```
|
|
138
101
|
|
|
139
|
-
|
|
140
|
-
|
|
102
|
+
### Example 2: Farm Planning
|
|
103
|
+
```
|
|
104
|
+
User: "I want to grow corn in Iowa. What should I know?"
|
|
105
|
+
AI: [Uses multiple tools] "Based on soil analysis, water quality, and climate data..."
|
|
141
106
|
```
|
|
142
107
|
|
|
143
|
-
|
|
108
|
+
## āļø Configuration
|
|
144
109
|
|
|
110
|
+
### Environment Variables
|
|
145
111
|
```bash
|
|
146
|
-
|
|
147
|
-
|
|
112
|
+
LEAFENGINES_API_KEY=your_api_key_here
|
|
113
|
+
MCP_PORT=3000 # Optional: Custom port
|
|
148
114
|
```
|
|
149
115
|
|
|
150
|
-
|
|
116
|
+
### API Keys
|
|
117
|
+
1. Sign up at [SoilSidekick Pro](https://soilsidekick.com)
|
|
118
|
+
2. Generate your API key
|
|
119
|
+
3. Set as environment variable
|
|
151
120
|
|
|
152
|
-
|
|
153
|
-
- **GitHub Repository:** [https://github.com/QWarranto/leafengines-claude-mcp](https://github.com/QWarranto/leafengines-claude-mcp)
|
|
154
|
-
- **MCP Registry:** Search for "io.github.QWarranto/leafengines" at [https://registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io)
|
|
121
|
+
## š Related Packages
|
|
155
122
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
```bash
|
|
161
|
-
# Test the FREE tool
|
|
162
|
-
leafengines-mcp-server
|
|
163
|
-
# Then in Claude Desktop, ask: "Check TurboQuant capabilities"
|
|
164
|
-
```
|
|
123
|
+
- [@soilsidekick/sdk]({{SDK_URL}}) - Core JavaScript SDK
|
|
124
|
+
- [node-red-contrib-leafengines]({{NODE_RED_URL}}) - Node-RED automation
|
|
125
|
+
- [n8n-nodes-leafengines]({{N8N_URL}}) - n8n business automation
|
|
165
126
|
|
|
166
127
|
## š¤ Contributing
|
|
167
128
|
|
|
168
|
-
|
|
129
|
+
We welcome contributions! Please see [CONTRIBUTING.md]({{CONTRIBUTING_URL}}).
|
|
130
|
+
|
|
131
|
+
## š License
|
|
169
132
|
|
|
170
133
|
## š License
|
|
171
134
|
|
|
172
|
-
|
|
135
|
+
MIT License
|
|
136
|
+
|
|
137
|
+
Copyright (c) {{YEAR}} {{COMPANY_NAME}}
|
|
138
|
+
|
|
139
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
140
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
141
|
+
in the Software without restriction, including without limitation the rights
|
|
142
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
143
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
144
|
+
furnished to do so, subject to the following conditions:
|
|
173
145
|
|
|
174
|
-
|
|
146
|
+
The above copyright notice and this permission notice shall be included in all
|
|
147
|
+
copies or substantial portions of the Software.
|
|
175
148
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
149
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
150
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
151
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
152
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
153
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
154
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
155
|
+
SOFTWARE.
|
|
180
156
|
|
|
181
|
-
|
|
157
|
+
## š Support
|
|
182
158
|
|
|
183
|
-
|
|
159
|
+
- **Documentation:** [LeafEngines MCP Docs]({{DOCS_URL}})
|
|
160
|
+
- **GitHub:** [Issues & Discussions]({{GITHUB_URL}})
|
|
161
|
+
- **Email:** mcp-support@leafengines.com
|
package/dist/index.d.ts
CHANGED
|
@@ -11,8 +11,10 @@
|
|
|
11
11
|
* - Weather forecasting for agriculture
|
|
12
12
|
* - Environmental impact assessment
|
|
13
13
|
* - TurboQuant capabilities checking (FREE)
|
|
14
|
+
* - Anonymous usage analytics (opt-out available)
|
|
14
15
|
*
|
|
15
16
|
* API Documentation: https://app.soilsidekickpro.com/api-docs
|
|
17
|
+
* MCP Documentation: https://app.soilsidekickpro.com/mcp
|
|
16
18
|
*/
|
|
17
19
|
export {};
|
|
18
20
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;GAgBG"}
|
package/dist/index.js
CHANGED
|
@@ -12,8 +12,10 @@
|
|
|
12
12
|
* - Weather forecasting for agriculture
|
|
13
13
|
* - Environmental impact assessment
|
|
14
14
|
* - TurboQuant capabilities checking (FREE)
|
|
15
|
+
* - Anonymous usage analytics (opt-out available)
|
|
15
16
|
*
|
|
16
17
|
* API Documentation: https://app.soilsidekickpro.com/api-docs
|
|
18
|
+
* MCP Documentation: https://app.soilsidekickpro.com/mcp
|
|
17
19
|
*/
|
|
18
20
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
19
21
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -26,12 +28,45 @@ const axios_1 = __importDefault(require("axios"));
|
|
|
26
28
|
// MCP Server implementation
|
|
27
29
|
const server = new index_js_1.Server({
|
|
28
30
|
name: "leafengines",
|
|
29
|
-
version: "1.1.
|
|
31
|
+
version: "1.1.8",
|
|
30
32
|
}, {
|
|
31
33
|
capabilities: {
|
|
32
34
|
tools: {},
|
|
33
35
|
},
|
|
34
36
|
});
|
|
37
|
+
// Analytics tracking (anonymous, opt-out available via NO_ANALYTICS=1)
|
|
38
|
+
const ANALYTICS_ENDPOINT = "https://wzgnxkoeqzvueypwzvyn.supabase.co/functions/v1/analytics";
|
|
39
|
+
const ENABLE_ANALYTICS = process.env.NO_ANALYTICS !== "1";
|
|
40
|
+
// Track tool usage anonymously
|
|
41
|
+
async function trackToolUsage(toolName) {
|
|
42
|
+
if (!ENABLE_ANALYTICS)
|
|
43
|
+
return;
|
|
44
|
+
try {
|
|
45
|
+
await axios_1.default.post(ANALYTICS_ENDPOINT, {
|
|
46
|
+
event: "tool_used",
|
|
47
|
+
tool: toolName,
|
|
48
|
+
version: "1.1.8",
|
|
49
|
+
timestamp: new Date().toISOString(),
|
|
50
|
+
anonymous_id: `mcp_${Date.now()}_${Math.random().toString(36).substr(2, 9)}`
|
|
51
|
+
}, {
|
|
52
|
+
timeout: 1000 // Don't block on analytics
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
catch (error) {
|
|
56
|
+
// Silently fail - analytics should not affect functionality
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
// Community engagement message (shown on first run)
|
|
60
|
+
function getCommunityMessage() {
|
|
61
|
+
return `š± Welcome to LeafEngines MCP Server (v1.1.8)!
|
|
62
|
+
|
|
63
|
+
Join 750+ developers in our community:
|
|
64
|
+
⢠GitHub Discussions: https://github.com/QWarranto/leafengines-claude-mcp/discussions
|
|
65
|
+
⢠Upcoming Tutorial Videos: Agricultural AI MCP tips
|
|
66
|
+
⢠Twitter: @LeafEnginesAI for updates
|
|
67
|
+
|
|
68
|
+
Share your use case: What are you building with agricultural AI?`;
|
|
69
|
+
}
|
|
35
70
|
// Configuration
|
|
36
71
|
const MCP_SERVER_URL = "https://wzgnxkoeqzvueypwzvyn.supabase.co/functions/v1/mcp-server-v2";
|
|
37
72
|
// Helper function to call LeafEngines API
|
|
@@ -68,7 +103,7 @@ server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => {
|
|
|
68
103
|
tools: [
|
|
69
104
|
{
|
|
70
105
|
name: "turbo_quant_capabilities",
|
|
71
|
-
description: "Check TurboQuant optimization status and hardware compatibility. FREE tool - no API key required.",
|
|
106
|
+
description: "Check TurboQuant optimization status and hardware compatibility. FREE tool - no API key required. Join 750+ developers in our community!",
|
|
72
107
|
inputSchema: {
|
|
73
108
|
type: "object",
|
|
74
109
|
properties: {
|
|
@@ -190,6 +225,8 @@ server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => {
|
|
|
190
225
|
// Handle tool execution
|
|
191
226
|
server.setRequestHandler(types_js_1.CallToolRequestSchema, async (request) => {
|
|
192
227
|
const { name, arguments: args } = request.params;
|
|
228
|
+
// Track tool usage (anonymous analytics)
|
|
229
|
+
trackToolUsage(name);
|
|
193
230
|
// Get API key from environment variable
|
|
194
231
|
const apiKey = process.env.LEAFENGINES_API_KEY;
|
|
195
232
|
// Special handling for FREE tool (no API key required)
|
|
@@ -217,13 +254,14 @@ server.setRequestHandler(types_js_1.CallToolRequestSchema, async (request) => {
|
|
|
217
254
|
};
|
|
218
255
|
}
|
|
219
256
|
}
|
|
220
|
-
//
|
|
221
|
-
|
|
257
|
+
// Free tools: county_lookup and get_soil_data available without API key
|
|
258
|
+
const freeTools = ['county_lookup', 'get_soil_data'];
|
|
259
|
+
if (!apiKey && !freeTools.includes(name)) {
|
|
222
260
|
return {
|
|
223
261
|
content: [
|
|
224
262
|
{
|
|
225
263
|
type: "text",
|
|
226
|
-
text: `API key required for ${name}.
|
|
264
|
+
text: `API key required for ${name}. Free tools available without key: county_lookup, get_soil_data.\n\nGet full access:\n⢠Starter ($10/mo ā $49/mo lifetime): https://buy.stripe.com/14A7sL30y8bR2F4fbgaMU02\n⢠Pro ($49/mo ā $149/mo lifetime): https://buy.stripe.com/cNi3cv1WuajZcfE7IOaMU03\n\nFounder pricing ā first 100 only.`,
|
|
227
265
|
},
|
|
228
266
|
],
|
|
229
267
|
isError: true,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AACA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AACA;;;;;;;;;;;;;;;;GAgBG;;;;;AAEH,wEAAmE;AACnE,wEAAiF;AACjF,iEAG4C;AAC5C,kDAA0B;AAE1B,4BAA4B;AAC5B,MAAM,MAAM,GAAG,IAAI,iBAAM,CACvB;IACE,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,OAAO;CACjB,EACD;IACE,YAAY,EAAE;QACZ,KAAK,EAAE,EAAE;KACV;CACF,CACF,CAAC;AAEF,uEAAuE;AACvE,MAAM,kBAAkB,GAAG,iEAAiE,CAAC;AAC7F,MAAM,gBAAgB,GAAG,OAAO,CAAC,GAAG,CAAC,YAAY,KAAK,GAAG,CAAC;AAE1D,+BAA+B;AAC/B,KAAK,UAAU,cAAc,CAAC,QAAgB;IAC5C,IAAI,CAAC,gBAAgB;QAAE,OAAO;IAE9B,IAAI,CAAC;QACH,MAAM,eAAK,CAAC,IAAI,CAAC,kBAAkB,EAAE;YACnC,KAAK,EAAE,WAAW;YAClB,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,OAAO;YAChB,SAAS,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;YACnC,YAAY,EAAE,OAAO,IAAI,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;SAC7E,EAAE;YACD,OAAO,EAAE,IAAI,CAAC,2BAA2B;SAC1C,CAAC,CAAC;IACL,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,4DAA4D;IAC9D,CAAC;AACH,CAAC;AAED,oDAAoD;AACpD,SAAS,mBAAmB;IAC1B,OAAO;;;;;;;iEAOwD,CAAC;AAClE,CAAC;AAED,gBAAgB;AAChB,MAAM,cAAc,GAAG,qEAAqE,CAAC;AAE7F,0CAA0C;AAC1C,KAAK,UAAU,kBAAkB,CAAC,QAAgB,EAAE,UAAe,EAAE,MAAe;IAClF,IAAI,CAAC;QACH,MAAM,OAAO,GAAQ;YACnB,cAAc,EAAE,kBAAkB;SACnC,CAAC;QAEF,IAAI,MAAM,EAAE,CAAC;YACX,OAAO,CAAC,WAAW,CAAC,GAAG,MAAM,CAAC;QAChC,CAAC;QAED,MAAM,QAAQ,GAAG,MAAM,eAAK,CAAC,IAAI,CAC/B,cAAc,EACd;YACE,OAAO,EAAE,KAAK;YACd,MAAM,EAAE,YAAY;YACpB,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,SAAS,EAAE,UAAU;aACtB;YACD,EAAE,EAAE,CAAC;SACN,EACD;YACE,OAAO;YACP,OAAO,EAAE,KAAK;SACf,CACF,CAAC;QAEF,OAAO,QAAQ,CAAC,IAAI,CAAC;IACvB,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,OAAO,CAAC,KAAK,CAAC,gCAAgC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;QAC/D,MAAM,KAAK,CAAC;IACd,CAAC;AACH,CAAC;AAED,6DAA6D;AAC7D,MAAM,CAAC,iBAAiB,CAAC,iCAAsB,EAAE,KAAK,IAAI,EAAE;IAC1D,OAAO;QACL,KAAK,EAAE;YACL;gBACE,IAAI,EAAE,0BAA0B;gBAChC,WAAW,EAAE,0IAA0I;gBACvJ,WAAW,EAAE;oBACX,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,cAAc,EAAE;4BACd,IAAI,EAAE,SAAS;4BACf,WAAW,EAAE,+DAA+D;4BAC5E,OAAO,EAAE,IAAI;yBACd;wBACD,uBAAuB,EAAE;4BACvB,IAAI,EAAE,SAAS;4BACf,WAAW,EAAE,2CAA2C;4BACxD,OAAO,EAAE,IAAI;yBACd;qBACF;iBACF;aACF;YACD;gBACE,IAAI,EAAE,eAAe;gBACrB,WAAW,EAAE,4IAA4I;gBACzJ,WAAW,EAAE;oBACX,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,QAAQ,EAAE;4BACR,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,uCAAuC;yBACrD;wBACD,SAAS,EAAE;4BACT,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,wCAAwC;yBACtD;wBACD,SAAS,EAAE;4BACT,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,0CAA0C;4BACvD,QAAQ,EAAE,IAAI;yBACf;qBACF;oBACD,QAAQ,EAAE,CAAC,UAAU,EAAE,WAAW,CAAC;iBACpC;aACF;YACD;gBACE,IAAI,EAAE,kBAAkB;gBACxB,WAAW,EAAE,+HAA+H;gBAC5I,WAAW,EAAE;oBACX,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,QAAQ,EAAE;4BACR,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,qBAAqB;yBACnC;wBACD,SAAS,EAAE;4BACT,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,sBAAsB;yBACpC;wBACD,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,+BAA+B;4BAC5C,OAAO,EAAE,CAAC;4BACV,OAAO,EAAE,CAAC;4BACV,OAAO,EAAE,CAAC;yBACX;qBACF;oBACD,QAAQ,EAAE,CAAC,UAAU,EAAE,WAAW,CAAC;iBACpC;aACF;YACD;gBACE,IAAI,EAAE,qBAAqB;gBAC3B,WAAW,EAAE,+HAA+H;gBAC5I,WAAW,EAAE;oBACX,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,QAAQ,EAAE;4BACR,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,qBAAqB;yBACnC;wBACD,SAAS,EAAE;4BACT,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,sBAAsB;yBACpC;wBACD,MAAM,EAAE;4BACN,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,0DAA0D;4BACvE,QAAQ,EAAE,IAAI;yBACf;qBACF;oBACD,QAAQ,EAAE,CAAC,UAAU,EAAE,WAAW,CAAC;iBACpC;aACF;YACD;gBACE,IAAI,EAAE,sBAAsB;gBAC5B,WAAW,EAAE,uHAAuH;gBACpI,WAAW,EAAE;oBACX,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,QAAQ,EAAE;4BACR,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,qBAAqB;yBACnC;wBACD,SAAS,EAAE;4BACT,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,sBAAsB;yBACpC;wBACD,SAAS,EAAE;4BACT,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,uCAAuC;4BACpD,QAAQ,EAAE,IAAI;yBACf;wBACD,gBAAgB,EAAE;4BAChB,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,0DAA0D;4BACvE,QAAQ,EAAE,IAAI;yBACf;qBACF;oBACD,QAAQ,EAAE,CAAC,UAAU,EAAE,WAAW,CAAC;iBACpC;aACF;SACF;KACF,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,wBAAwB;AACxB,MAAM,CAAC,iBAAiB,CAAC,gCAAqB,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;IAChE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC;IAEjD,yCAAyC;IACzC,cAAc,CAAC,IAAI,CAAC,CAAC;IAErB,wCAAwC;IACxC,MAAM,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC;IAE/C,uDAAuD;IACvD,IAAI,IAAI,KAAK,0BAA0B,EAAE,CAAC;QACxC,IAAI,CAAC;YACH,MAAM,MAAM,GAAG,MAAM,kBAAkB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;YACpD,OAAO;gBACL,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,MAAM;wBACZ,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC;qBACtC;iBACF;aACF,CAAC;QACJ,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YACpB,OAAO;gBACL,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,MAAM;wBACZ,IAAI,EAAE,iBAAiB,IAAI,KAAK,KAAK,CAAC,OAAO,EAAE;qBAChD;iBACF;gBACD,OAAO,EAAE,IAAI;aACd,CAAC;QACJ,CAAC;IACH,CAAC;IAED,wEAAwE;IACxE,MAAM,SAAS,GAAG,CAAC,eAAe,EAAE,eAAe,CAAC,CAAC;IACrD,IAAI,CAAC,MAAM,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACzC,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,wBAAwB,IAAI,qSAAqS;iBACxU;aACF;YACD,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;IAED,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,kBAAkB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;QAC5D,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC;iBACtC;aACF;SACF,CAAC;IACJ,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,oCAAoC;QACpC,IAAI,KAAK,CAAC,QAAQ,EAAE,MAAM,KAAK,GAAG,EAAE,CAAC;YACnC,OAAO;gBACL,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,MAAM;wBACZ,IAAI,EAAE,6BAA6B,IAAI,yFAAyF;qBACjI;iBACF;gBACD,OAAO,EAAE,IAAI;aACd,CAAC;QACJ,CAAC;QAED,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAM;oBACZ,IAAI,EAAE,iBAAiB,IAAI,KAAK,KAAK,CAAC,OAAO,EAAE;iBAChD;aACF;YACD,OAAO,EAAE,IAAI;SACd,CAAC;IACJ,CAAC;AACH,CAAC,CAAC,CAAC;AAEH,iBAAiB;AACjB,MAAM,CAAC,OAAO,GAAG,CAAC,KAAK,EAAE,EAAE;IACzB,OAAO,CAAC,KAAK,CAAC,oBAAoB,EAAE,KAAK,CAAC,CAAC;AAC7C,CAAC,CAAC;AAEF,sBAAsB;AACtB,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,KAAK,IAAI,EAAE;IAC9B,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC;IACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC;AAEH,eAAe;AACf,KAAK,UAAU,IAAI;IACjB,MAAM,SAAS,GAAG,IAAI,+BAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAChC,OAAO,CAAC,KAAK,CAAC,yCAAyC,CAAC,CAAC;AAC3D,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACrB,OAAO,CAAC,KAAK,CAAC,yBAAyB,EAAE,KAAK,CAAC,CAAC;IAChD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
|
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.9",
|
|
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",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "
|
|
18
|
+
"url": "https://github.com/QWarranto/leafengines-claude-mcp/tree/main/leafengines-claude-mcp"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
21
21
|
"mcp",
|